*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: Poppins, serif;
}
body{
     background-color: #e8e8e8;
}

.form-container{
    background-color: white;
    padding: 2em;
    border-radius: 25px;
    transition: .4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 2px;
}

.prime-color{
    color: #2c4964;
}

.input{
    border-radius: 5px;
    border: 1px solid whitesmoke;
    background-color: whitesmoke;
    outline: none;
    padding: 0.7em;
    transition: .4s ease-in-out;
}

.input:hover{
    box-shadow: 6px 6px 0px #969696,
             -3px -3px 10px #ffffff;
}

.input:focus{
    background: #ffffff;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
    outline: none;
    border-color: transparent;
}

.cities-option{
    background-color: #f5f5f5;
}

.btn{
    margin: 10px auto 0 auto;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: whitesmoke;
    box-shadow: 4px 4px rgba(0, 0, 0, 0.4);
    font-size: 17px;
    font-weight: 600;
    color: black;
    cursor: pointer;
}

.btn:active{
    transition: .2s;
    transform: translateX(0em) translateY(0em);
    box-shadow: none;
    
}