*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-image: url(new-back-ground-image.png);
    font-family: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.container{
    width: 400px;
    padding-top: 30px;
    background-color: #fff;
    padding-inline: 30px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .4);
    margin-top: 70px;
    margin-bottom: 57px;
}

p{
    padding-top: 10px; 
    font-size: 20px;
    font-weight: 600;
    color: #4d4d4d;
}

.center{
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

label{
    font-size: 14px;
    color: #4d4d4d;
}

.input-box{
    margin-top: 3px;
    margin-bottom: 7px;
    position: relative;

}

.input-box input{
    width: 340px;
    height: 35px;
    padding-left: 10px;
    outline: none;
    border-radius: 3px;
    border: 1.2px solid rgb(223, 217, 217);
}

.input-box input:focus{
    outline: none;
    border: 1.5px solid #99cae7;
    background-color: #e8f0fe;
}

#toggle{
    position: absolute;
    cursor: pointer;
    top: 26%;
    left: 85%;
    border: none;
    font-size: 12px;
    background-color: #fff;
    color: #4d4d4d;
}

#toggle:hover{
    color: #0088c1;
}

.bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.btn{
    font-size: 14px;
    padding: 8px 23px;
    border-radius: 5px;
    border: none;
    background-color: #0088c1;
    color: #fff;
    cursor: pointer;
}

.check label{
    display: flex;
    gap: 5px;
    font-size: 13px;
}

.down{
    background-color: #eeeeee;
    width: 400px;
    padding-inline: 30px;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .4);
}

.down p{
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 5px;
}

.select{
    display: flex;
    align-items: center;
    width: 400px;
    gap: 10px;
}

.select select{
    width: 340px;
    height: 30px;
    border: 1.2px solid rgb(223, 217, 217);
}

.select select:focus{
    outline: none;
    border: 1.5px solid #99cae7;
}

footer{
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
    text-align: center;
}

@media screen and (max-width: 700px) {
}