/* recovery.css */
    :root {
      --primary: #FF6B35;
      --primary-light: rgba(255, 107, 53, 0.8);
      --secondary: #004E89;
      --accent: #FFD166;
      --light: rgba(255, 255, 255, 0.9);
      --light-transparent: rgba(255, 255, 255, 0.7);
      --dark: #1A1A1D;
      --success: #28a745;
      --error: #dc3545;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body,
    html {
      height: 100%;
      font-family: "Inter", sans-serif;
      color: var(--light);
      background-color: var(--dark);
      overflow-x: hidden;
    }

    .background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("images/background-PARMISA.jpg") no-repeat center center fixed;
      background-size: cover;
      z-index: 0;
    }
    .background::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(26, 26, 29, 0.9) 0%,
        rgba(26, 26, 29, 0.6) 100%
      );
      pointer-events: none;
    }

    .navbar {
      position: relative;
      z-index: 10;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      background: transparent;
      user-select: none;
    }

    .navbar-brand {
      font-family: "Montserrat", sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 2px;
      cursor: default;
      position: relative;
      user-select: none;
      text-transform: uppercase;
    }

    .container {
      position: relative;
      z-index: 10;
      min-height: calc(100vh - 72px);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .recovery-box {
      background: rgba(255 255 255 / 0.1);
      padding: 2.5rem 2rem;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      width: 400px;
      backdrop-filter: blur(8px);
      text-align: center;
    }

    .recovery-box h2 {
      color: var(--primary);
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .subtitle {
      color: var(--light-transparent);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      line-height: 1.4;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .input-group {
      position: relative;
    }

    input[type="email"] {
      padding: 0.75rem 1rem;
      border-radius: 50px;
      border: none;
      background: rgba(255 255 255 / 0.15);
      color: var(--light);
      font-size: 1rem;
      transition: var(--transition);
      font-weight: 500;
      font-family: "Inter", sans-serif;
      width: 100%;
    }

    input[type="email"]::placeholder {
      color: var(--light-transparent);
      font-weight: 300;
    }

    input[type="email"]:focus {
      outline: none;
      background: rgba(255 255 255 / 0.25);
      box-shadow: 0 0 8px var(--primary-light);
    }

    .submit-btn {
      padding: 0.75rem;
      border-radius: 50px;
      border: none;
      background-color: var(--primary);
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 1px;
      font-family: "Montserrat", sans-serif;
    }

    .submit-btn:hover {
      background-color: #e05c28;
      box-shadow: 0 6px 20px rgba(224, 92, 40, 0.4);
      transform: translateY(-2px);
    }

    .submit-btn:disabled {
      background-color: #666;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .message {
      font-weight: 600;
      font-size: 0.9rem;
      height: auto;
      margin-bottom: 1rem;
      padding: 0.75rem;
      border-radius: 8px;
      display: none;
    }

    .message.error {
      background-color: rgba(220, 53, 69, 0.1);
      color: var(--error);
      border: 1px solid rgba(220, 53, 69, 0.3);
    }

    .message.success {
      background-color: rgba(40, 167, 69, 0.1);
      color: var(--success);
      border: 1px solid rgba(40, 167, 69, 0.3);
    }

    .back-link {
      margin-top: 1.5rem;
      text-align: center;
      font-size: 0.95rem;
      color: var(--light-transparent);
      font-weight: 500;
      font-family: "Inter", sans-serif;
    }

    .back-link a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 700;
      transition: var(--transition);
    }

    .back-link a:hover {
      text-decoration: underline;
      color: #e05c28;
    }

    .loading {
      display: none;
      margin-top: 1rem;
      color: var(--light-transparent);
      font-size: 0.9rem;
    }

    .loading::after {
      content: '';
      animation: dots 1.5s infinite;
    }

    @keyframes dots {
      0%, 20% { content: ''; }
      40% { content: '.'; }
      60% { content: '..'; }
      80%, 100% { content: '...'; }
    }

    @media (max-width: 480px) {
      .recovery-box {
        width: 90vw;
      }
    }
