*{
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f4e4ba, #f8cdda);
}

.container{
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;    
    max-width: 400px; 
    min-height: auto;  
    max-height: 400px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease-in-out;
}
.container:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.3s ease; 
}

form input, form button, .select-container {
    width: 100%;}
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 lightgray;
    font-size: 1rem;
    height: 3rem;
    padding-left: 0.5rem;
}

form input:focus {
    border: 2px solid #af4d98;
}

.dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}
.dropdown i {
    font-size: 1.5rem;
    margin-top: 1rem;
}
.select-container img {
    max-width: 2rem;
}

.select-container{
    display: flex;
    width: 6rem;
    background-color: #f0f0f0;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid lightgray;
}

.select-container select{
    font-size: 1rem;
    width: auto;
}

.msg {
    margin: 2rem 0 2rem 0;
}

form button {
    height: 3rem;
    background-color: #af4d98;
    color: white;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #8e3b7b;
    transform: translateY(-2px);
}
