*{
    margin: 0;
    padding: 0;
}

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

.container{
    padding: 2rem;
    min-height: 45vh;
    width: 40vh;
    border-radius: 1rem;
    background-color: #fff;
}

form{
    margin: 2rem 0 1rem 0;
}

form input, select, button{
    width: 100%;
    outline: none;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
}

form input{
    border: 1px solid lightgray;
    font-size: 1rem;
    height: 3rem;
    padding-left: 0.5rem;
}

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

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

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

.select-container select{
    border: none;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    width: auto;
    cursor: pointer;
}

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

button{
    background-color: #af4d98;
    height: 3rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}