/* Основные настройки */
body, html {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
}

/* Шапка с названием */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.brand-header h1 {
    margin: 0;
    font-size: 28px;
    color: #1a73e8;
    letter-spacing: -0.5px;
}

.brand-header span {
    font-size: 14px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Карточка входа */
.login-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67, 0.3), 0 4px 8px 3px rgba(60,64,67, 0.15);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 18px;
}

.secure-badge {
    font-size: 10px;
    background: #e6f4ea;
    color: #137333;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Поля ввода */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #202124;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: inset 0 0 0 1px #1a73e8;
}

/* Кнопка */
.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:hover {
    background-color: #1765cc;
}

/* Футер */
.legal-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #70757a;
    line-height: 1.8;
}

.legal-footer a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-footer a:hover {
    text-decoration: underline;
}

/* Капча */
.g-recaptcha {
    margin-top: 10px;
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Сообщение об ошибке */
#error-message {
    color: #d93025;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
}