* {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: conic-gradient(from -90deg at 75% -25%, sienna, purple);
    background-position: center;
    background-repeat: no-repeat;
    
}

.container {
    background-color: rgb(223, 182, 182);
    padding: 2rem;
    border-radius: 1rem;
    height: 45vh;
    width: 40vh;
}

.container h2 {
    text-decoration-color: #712a5f;
    text-align: center;
    
}

form {
    margin: 2rem 0 1rem 0;

}

form select,
button,
input {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;
}

form input {
    border: 1px solid lightgrey;
    font-size: 1rem;
    height: 2rem;
    padding-left: 0.5rem;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.dropdown i {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.select-container img {
    max-width: 2.5rem;
}

.select-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid lightgray;
    width: 7rem;
}

.select-container select {
    font-size: 1rem;
    width: auto;

}

.msg {
    margin: 2rem 0 2rem 0;
}

form button {
    height: 3rem;
    background-color: #712a5f;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .container {
        height: 48vh;
    }
   
  }
@media (max-width: 1142px){
    .container {
       padding-bottom: 20px;
    }
}

  
 @media only screen and (max-width: 600px) {
    .container {
        padding: 1.5rem;
        border-radius: .5rem;
        height: 49vh;
        width: 40vh;
    }
    .select-container {
        width: 7rem;
    }
    .dropdown i {
        font-size: 1rem;
        margin-top: 1rem;
    }
  }
  