/* static/pages/css/login.css */

/* Общие стили */

.container {
    position: relative;
    max-width: 100% !important;
    height: 100vh;
    min-height: 500px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/login-back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
}

.auth-wrap {
    display: flex;
    gap: 50px;
}

.register {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 216, 198, 0.4), rgba(188, 94, 255, 0.4), rgba(30, 6, 56, 0.4));
    padding: 100px;
    border-radius: 50px;
    text-align: center;
}

.register .logo-wrapper img {
    padding-bottom: 60px;
}

.register a {
    position: relative;
    padding: 10px 20px;
    background-color: #fff;
    font-size: 22px;
    text-decoration: none;
    color: #000000;
    border-radius: 40px;
    font-weight: 600;
    z-index: 1;
}

.login {
    display: flex;
    gap: 30px;
    position: relative;
    background: linear-gradient(180deg, rgb(45 14 65 / 40%), rgb(23 8 34 / 73%), rgb(33 9 59 / 61%));
    padding: 50px;
    border-radius: 50px;
}

.login .left {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login .right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login .right .header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-group input {
    width: 100%;
    height: 48px;
    font-size: 20px;
    background-color: rgb(240, 240, 240);
    padding: 10px 10px 10px 20px;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
    border-radius: 100px;
}

.form-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.form-options a {
   text-decoration: none;
   color: #fff;
}

.form-options a:hover {
    color: #1482fa;
}

.btn-primary {
    position: relative;
    padding: 4px 20px;
    background-color: #fff;
    font-size: 22px;
    text-decoration: none;
    color: #000000;
    border-radius: 40px;
    font-weight: 600;
}

.error-message {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 999px) {
    .auth-wrap { flex-direction: column-reverse; }
    .register { padding: 25px 100px; }
} 

@media (max-width: 768px) {

    
}

@media (max-width: 532px) {
    .auth-wrap {width: 100%; max-width: 420px; gap: 20px; }
    .login { flex-direction: column; padding: 20px; }
    .login .left, .login .right { width: 100%; }
    .login .left img { width: 80px; }
    .register { display: flex; align-items: center; justify-content: space-around; padding: 20px 20px; }
    .register a { font-size: 18px; }
    .register .logo-wrapper img { padding-bottom: 0px; width: 40px; }
}