/* Стили для сброса пароля */

.password-reset-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.password-reset-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
}

.password-reset-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 300;
}

.password-reset-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

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

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

.password-reset-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.password-reset-form .form-control:focus {
    outline: none;
    border-color: #667eea;
}

.password-reset-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.password-reset-btn:hover {
    transform: translateY(-2px);
}

.password-reset-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.password-reset-footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}

.password-reset-links {
    margin-top: 20px;
    text-align: center;
}

.password-reset-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.password-reset-links a:hover {
    text-decoration: underline;
}

.password-reset-success {
    text-align: center;
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin-bottom: 20px;
}

.password-reset-error {
    text-align: center;
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    .password-reset-container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .password-reset-title {
        font-size: 24px;
    }
    
    .password-reset-subtitle {
        font-size: 14px;
    }
}













