*{
        margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color:  #f1e1b6;
}

.container{
    background-color: #fffbfb;
    padding: 2rem;
    border-radius: 1.5rem;
    height: auto;
    width: 40vh;
}

form{
    display: flex;
  flex-direction: column;
}

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;
}

.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.select-container img{

    max-width: 2rem;
}

.select-container {
display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    border-radius: 0.5rem;
    border: 1px solid lightgray;
}

.dropdown i{
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.select-container select{
    font-size: 1rem;
    width: auto;
}

.msg{
    margin: 2rem 0 2rem 0;
}

form button {
    height: 3rem;
    width: auto;
    padding: 0 1rem;
    background-color: #af4d98;
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 0.75rem;
    align-self: stretch;
    margin-bottom: 3rem;
    transition: background-color 0.3s ease, transform 0.1s ease; /* Smooth effect */
}

/* Hover effect */
form button:hover {
    transform: translateY(-2px); /* Small lift effect */
}

/* Click effect */
form button:active {
    background-color: #a03a81; /* Slightly darker */
    transform: translateY(1px); /* Push effect */
}


div form p{
    margin-top: 1rem;
    font-size: 1.15rem;
}

form > * {
    margin-bottom: 1rem;
}
