*{
    padding: 0px;
    margin: 0px;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(145deg, #17153B, #2E236C, #433D8B, #C8ACD6);
}

.container{
    background-color: #FFF9E5;
    padding: 2rem;
    border-radius: 10px;
    min-height: 50vh;
    min-width: 45vh;
    box-shadow: 0 0 2rem black;
}

h2{
    font-family: Arial, Helvetica, sans-serif;
    color: #004030;
}

p{
    margin-bottom: 0.25rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #004030;
}

form{
    margin: 2rem 0 2rem 0;
}

form select,button,input{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;
}

form input{
    padding-left: 0.5rem;
    font-size: 1rem;
    height: 3rem;
}

form input:hover{
    box-shadow: 0 0 0.5rem rgb(43, 42, 42);
}

.dropdown{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    justify-content: space-between;
}

.dropdown i{
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.select-container img{
    max-width: 2rem;
    border-radius:0.75rem ;
}

.select-container select{
    font-size: 1rem;
    width: auto;
}

.select-container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.75rem;
    width: 6rem;
}

.select-container:hover{
    box-shadow: 0 0 0.5rem rgb(43, 42, 42);
}

.msg{
    margin: 2rem 0 2rem 0;
    font-family: Arial, Helvetica, sans-serif;
}

form button{
    height: 3rem;
    font-size: 1.10rem;
    background-color: #4A9782;
    color: #FAF7F3;
    cursor: pointer;
}

form button:hover{
    box-shadow: 0 0 0.5rem rgb(43, 42, 42);
}