*, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
}

body{
    background: #f5f7fa;
}

.container{
    width: 600px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 20px;
    border-radius: 5px;
    border: 1px solid #00000027;
}

.container h3{
    font-weight: 500;
    font-size: 22px;
}

.desc{
    font-size: 15px;
    opacity: 0.9;
    line-height: 20px;
    margin-top: 15px;
}

label{
    font-size: 15px;
    opacity: 0.85;
    line-height: 20px;
    margin-top: 15px;
    display: block;
    margin-bottom: 12px;
}

form{
    margin-top: 30px;
}

input{
    width: 100%;
    padding: 10px 30px;
    outline: none !important;
    margin-bottom: 10px;
    border: 1px solid #00000060;
}

.red{
    color: red;
}

.submit{
    padding: 13px 30px;
    width: 100%;
    background: #166e9a;
    color: #fff;
    border: 1px solid #166e9a;
    margin-top: 20px;
    cursor: pointer;
    transition: .2s !important;
}

.submit:hover{
    background: #125b7f;
    border: 1px solid #125b7f;
}

.error{
    color: red;
    font-size: 15px;
    position: fixed;
    right: -500px;
    top: 20px;
    background: rgba(255, 0, 0, 0.221);
    padding: 13px 40px;
    border: 1px solid red;
    opacity: 0;
    transition: .4s !important;
}