*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: west;
    src: url(roboto/CWB0XYA8bzo0kSThX0UTuA.woff2);
}

body{
    width: 100%;
    font-family: west;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.pic{
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.input-box{
    position: relative;
    width: 400px;
    margin: 40px 0;
    border-bottom: 1.2px solid rgb(102, 102, 102);
}

.input-box input{
    background: transparent;
    border: none;
    outline: none;
    padding-top: 9px;
    padding-bottom: 5px;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s;
}

.input-box input:focus{
    outline: none;
    border-bottom: 1.8px solid #0A5C9C;
}

.input-box input:focus::-webkit-input-placeholder{
    opacity: 0;
}

.input-box input:focus::-moz-placeholder{
    opacity: 0;
}

.input-box input:focus::-ms-placeholder{
    opacity: 0;
}

.input-box label{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    color: #fff;
    font-size: 10px;
    transition: 0.3s;
    display: none;
}

.input-box input:focus + label {
     font-size: 12px;
     top: 0;
     background-color: #fff;
     color: #0A5C9C;
     display: block;
}

.input-box i{
    position: absolute;
    top: 35%;
    right: 2%;
    cursor: pointer;
    color: #0A5C9C;
}

.butt{
    display: flex;
    justify-content: center;
}

.btn{
    background: rgb(10, 92, 156);
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    font-weight: 500;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.reset{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 50px;
}

.reset p{
    text-decoration: underline;
    color: #0A5C9C;
    font-size: 14px;
    cursor: pointer;
}

#vertical-line{
    background-color: #0A5C9C;
    width: 1.4px;
    height: 15px;
}

.lang{
    display: flex;
    justify-content: space-between;
    width: 160px;
    font-size: 14px;
    color: #0A5C9C;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    cursor: pointer;
}

.down p{
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #0A5C9C;
    padding-top: 30px;
    padding-bottom: 20px;
}

@media (max-width:600px){
    .input-box{
        position: relative;
        width: 315px;
        margin: 40px 0;
        border-bottom: 1.2px solid rgb(102, 102, 102);
    }
}