﻿body {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(#FFFFFF, #a9a9a9);
    height: 100%;
}

.form-login {
    padding: 25px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,0,0,.23);
    border-radius: 30px;
    box-shadow: 0 0 125px rgba(0,0,0,.23);
    width: 300px;
}

.input-login {
    font-weight: 600;
    border-radius: 0;
    background: rgba(255,255,255,.23);
}

.validacao-login {
    float: right;
    margin-top: -23px;
    margin-right: 7px;
    position: relative;
    color: red;
}
.login-error-message {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: red;
    /*display: none;*/
}

.buttons-aligned {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-login {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
    border-top: 1px solid rgba(0,0,0,.35);
}