* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #F6BD60;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 16rem;
    height: 22rem;
    background-color: #F7EDE2;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px black;
}

h2 {
    color: #003049;
    text-align: center;
}

form {
    margin: 2rem 0 1rem 0;
}

form input,
button,
select {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;
}

form input {
    height: 3rem;
    border: 1px solid black;
    background-color: #F7EDE2;
    font-size: 1rem;
    padding-left: 0.5rem;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.dropdown i {
    font-size: 1rem;
    margin-top: 1rem;
}

.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 black;
    background-color: #F7EDE2;
}

.select-container select {
    font-size: 1rem;
    width: auto;
    background-color: #F7EDE2;
}

.msg {
    margin: 2rem 0 2rem 0;
    text-align: center;
}

form button {
    height: 3rem;
    background-color: #003049;
    color: white;
    font-size: 1rem;
}