.auth-header .paragraph {
	margin-bottom: 20px;
}

.auth-wrapper {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    box-sizing: border-box;
}

.auth-container {
    max-width: 440px;
    width: 100%;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

.auth-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.auth-header h1 {
    margin: 0 0 8px;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

.auth-header p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

.auth-footer {
    padding: 16px 32px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #95a5a6;
}

/* Стили для кастомного шаблона компонента */
.custom-auth-form {
    padding: 32px;
}

.custom-auth-form .form-group {
    margin-bottom: 20px;
}

.custom-auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.custom-auth-form input[type="text"],
.custom-auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.custom-auth-form input[type="text"]:focus,
.custom-auth-form input[type="password"]:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.custom-auth-form .btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-auth-form .btn-submit:hover {
    background-color: #2980b9;
}

.custom-auth-form .auth-errors {
    color: #e74c3c;
    margin-bottom: 20px;
    padding: 12px;
    background-color: #fdecea;
    border-radius: 6px;
    font-size: 14px;
}

.custom-auth-form .auth-links {
    margin-top: 20px;
    text-align: center;
}

.custom-auth-form .auth-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.custom-auth-form .auth-links a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .auth-container {
        border-radius: 0;
    }
    
    .auth-header, .custom-auth-form, .auth-footer {
        padding: 24px 20px;
    }
}