/* Основные стили для форм сброса пароля */
.event-auth-form-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.auth-form-title {
    margin: 0 0 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #0073aa;
    outline: none;
}

.form-message {
    color: #666;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: #0073aa;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #005d8c;
}

/* Стили для сообщений */
.error {
    color: #dc3232;
    margin-bottom: 20px;
    padding: 10px;
    background: #ffebee;
    border-left: 4px solid #dc3232;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.required {
    color: #dc3232;
}

/* Дополнительные стили для контейнера */
.reset-password-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f1f1f1;
}

.reset-password-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.site-branding {
    text-align: center;
    margin-bottom: 30px;
}

.site-branding h1 {
    margin: 0;
    font-size: 28px;
    color: #333;
}

.site-branding a {
    text-decoration: none;
    color: #333;
}

.back-to-site {
    text-align: center;
    margin-top: 20px;
}

.back-to-site a {
    color: #0073aa;
    text-decoration: none;
}

.back-to-site a:hover {
    text-decoration: underline;
}