/* Auth forms styles - интегрировано в общий стиль Skeleton */

/* Контейнер авторизации */
.auth-container {
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 480px;
    margin: 0 auto;
}

/* Заголовок авторизации */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h2 {
    margin: 1rem 0 0.5rem 0;
    color: #222;
    font-weight: 700;
    font-size: 2.2rem;
}

.auth-subtitle {
    color: #888;
    font-size: 1.3rem;
    margin: 0;
}

/* Форма авторизации */
.auth-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.auth-form label {
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    color: #444;
    font-size: 1.3rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #e1e1e1;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    transition: all 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    border-color: #33C3F0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 195, 240, 0.1);
}

.auth-form input[type="text"]::placeholder,
.auth-form input[type="email"]::placeholder,
.auth-form input[type="password"]::placeholder {
    color: #aaa;
}

/* Кнопка */
.button-full {
    width: 100%;
    margin-top: 1.5rem;
    background-color: #33C3F0;
    border-color: #33C3F0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-full:hover {
    background-color: #1EAEDB;
    border-color: #1EAEDB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 195, 240, 0.3);
}

.button-full:active {
    transform: translateY(0);
}

/* Подвал авторизации */
.auth-footer {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e1e1e1;
}

.auth-footer p {
    margin: 0;
    font-size: 1.3rem;
    color: #666;
}

.auth-footer a {
    color: #33C3F0;
    font-weight: 600;
    transition: color 0.2s;
    text-decoration: none;
}

.auth-footer a:hover {
    color: #1EAEDB;
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    border: 1px solid;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
}

.alert-error {
    background-color: #ffebee;
    border-color: #ffcdd2;
    color: #c62828;
}

/* Адаптивность */
@media (max-width: 600px) {
    .auth-container {
        padding: 2rem 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.8rem;
    }
}
