/* Estilos das paginas de recuperacao de senha (password_reset e
   password_reset_confirm) — antes duplicados inline nos dois templates. */
    .main-content {
        min-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .password-reset-container {
        background: white;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        padding: 40px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .logo-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .logo-section h2 {
        color: #333;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .logo-section p {
        color: #666;
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500;
        font-size: 14px;
    }
    
    .form-control {
        padding: 14px 16px;
        border: 2px solid #e1e5e9;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #0d6efd;
        background: white;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    }
    
    .password-requirements {
        font-size: 12px;
        color: #666;
        margin-top: 6px;
        line-height: 1.4;
    }
    
    .btn-reset {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }
    
    .btn-reset:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    }
    
    .btn-reset:active {
        transform: translateY(0);
    }
    
    .btn-reset:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    .alert {
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
        margin: 20px 0;
    }
    
    .back-link {
        text-align: center;
        margin-top: 20px;
    }
    
    .back-link a {
        color: #0d6efd;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }
    
    .back-link a:hover {
        text-decoration: underline;
    }
    
    .loading {
        display: none;
        width: 20px;
        height: 20px;
        border: 2px solid #ffffff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-right: 10px;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .btn-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .password-match {
        font-size: 12px;
        margin-top: 6px;
        font-weight: 500;
    }
    
    .match-success {
        color: #28a745;
    }
    
    .match-error {
        color: #dc3545;
    }
