* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(230, 208, 87, 0.526);
}

h1 {
    text-align: center;
    letter-spacing: 0.2px;
}

.container {
    height: 75vh;
    width: 65vh;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: whitesmoke;
}

form {
    margin-top: 1rem;
}

form input,
select,
button {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.5rem;
}

form input {
    font-size: 1rem;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 0.1rem solid lightgray;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 1rem 1.5rem 1rem;
    gap: 1rem;
}

.dropdown i {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.dropdown p{
    text-align: center;
}

.select-container img {
    width: 2rem;
}

.select-container select {
    font-size: 1rem;
    font-weight: 600;
    width: auto;
    background-color: rgb(225, 222, 222);
}

.select-container {
    width: 94px;
    height: 38px;
    border: 0.1rem solid lightgray;
    border-radius: 0.3rem;
    padding: 0.15rem 3rem 0.15rem 3rem;
    margin-top: 0.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(225, 222, 222);
}

.msg {
    font-size: 1.2rem;
    margin: 3.5rem 0 0.5rem 0;
    overflow: hidden;
}

form button {
    font-size: 1.25rem;
    font-weight: 600;
    color: whitesmoke;
    padding: 1rem 1.5rem 1rem 1.5rem;
    margin-top: 1rem;
    background-color: rgb(156, 19, 156);
    transition: 0.3s;
    cursor: pointer;
}

form button:hover {
    color: white;
    background-color: rgb(125, 16, 125);
}