/*
Template Name: ACCOUNTS LOGIN
Author: Paweł Kaczorowski
Author @: p.kaczorowski@bf.team
Version: 0.1
*/
.accounts-login {
display: flex;
height:100vh;
position: relative;
align-items: center;
justify-content: center;

}

@media (max-width: 1200px) {
.accounts-login {
padding: 0 25px;
}
}



.accounts-login section {
max-width: 400px;
width: 100%;
padding: 30px;
background: #fff;
border-radius: 10px;
box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.accounts-logo { display: block;}
.accounts-logo img {
width: 120px;
max-width: 100%;
height: auto;
display: block;
margin: 0 auto
}

.accounts-login-header h1 {
font-size: 30px;
display: block;
width:100%;
text-align: center;
color: var(--light-primary);
margin: 10px 0 0 0;
}
.accounts-login-header p{
display:block;
text-align: center;
fomt-size: 16px;
}
.accounts-login-form-row {
display: flex;
width: 100%;
flex-direction: column
}


.accounts-login-form input[type="email"], .accounts-login-form input[type="password"], .accounts-login-form input[type="text"] {

        font-size: 14px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        border: 0;
        padding: 10px;
        height: 22px;
        margin-bottom: 15px;
        border: 1px solid #a9aaab;
        margin-top: 10px;
}

.accounts-login-form input[type="text"] &:focus {
            border: 1px solid var(--light-primary);
            color: #000;
        }

.accounts-login-form .alert {
display: block;
padding: 10px;
    color: #dc3232;
    background-color: #f6d2d2;
    border-color: rgba(220, 50, 50, .7);
    margin: 0 0 20px 0;
    line-height: 20px;
    font-size: 12px;
    border: 1px solid;
    border-radius: 10px;
}

.accounts-login-form .btn { margin-top: 10px; width: 100%}
.accounts-login-form {margin-top: 30px}


/* BUTTONS */
.welcome-buttons {
display: flex;
margin-top: 30px;
gap: 10px;
flex-direction: column;
}

.welcome-buttons a {
letter-spacing: 0.2px;
text-align: center;
transition: all .3s;
}
@media (max-width: 768px ) {
.welcome-buttons a {
font-size: 14px;
}
}
}

.welcome-buttons a:hover {
background: #00b4bd;
}

.welcome-buttons .btn-outline-info {
border: 1px solid var(--light-primary);
}

@media (max-width: 768px) {
.accounts-login .lang-switcher {
position: relative;
top: 0;
left: 0;
margin-bottom: 20px
}

.welcome .lang-switcher {
position: relative;
top: 0;
left: 0;
margin-bottom: 20px
}
