body{
    height:100vh;
    align-items: center;

}

.login{
    display: flex;
    overflow-y: scroll;
    justify-content: center;
    align-items: center;
    background-color: var(--blue-50);
    height: 100%;
    flex: 1 0 0;
}

.form-container{
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap:10px;
    width: 500px;
    border-radius: 5px;
    border: 1px solid var(--blue-200);
    background: var(--white);
    box-shadow: 0px 0px 20px 0px rgba(42, 95, 231, 0.10);
}

.logo-container{

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.logo-container .logo{
     width: 194px;
    height: 109px;
}

.form{
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    background: rgba(255,255,255,0.8);
}

.form .header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.form .header h4, .form .header p{
    align-self: stretch;
    text-align: center;
}

.form .form-body{
    display: flex;
    padding: 30px;
    align-items: flex-end;
    gap: 30px;
    flex-direction: column;
    align-self: stretch;
}

.inputs{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}

.forgot-password{
    color: var(--secondary-600);
    font-weight: 500

}





.msg{
    display: none;
    padding: 10px 25px;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    background-color: var(--blue-50);
    align-self: stretch;
}

.msg span{
    font-size: 20px;
}
.msg.error{
    background-color: var(--error-50);
}

.msg.success{
    background-color: var(--success-50);
}

.msg.success span{
    color: var(--success-500);
}

.msg.error span{
    color: var(--error-400);
}

.msg p{
    font-size: var(--font-size-body);
    font-weight: 500;
}

.msg.error p{
    color: var(--error-600);
}

.msg.success p{
    color: var(--success-600);
}
