      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", system-ui, sans-serif;
      }

      body {
        background: linear-gradient(135deg, #1a2a6c, #2a3c7f, #4a5f9e);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
      }

      .background-blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("de.jpg") no-repeat center center;
        background-size: cover;
        z-index: -1;
      }

      .container {
        width: 100%;
        max-width: 380px;
        position: relative;
        z-index: 1;
      }

      .glass-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 25px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.18);
        color: #333;
        overflow: hidden;
        position: relative;
      }

      .glass-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          rgba(255, 255, 255, 0) 70%
        );
        z-index: 0;
      }

      .card-content {
        position: relative;
        z-index: 1;
      }

      .logo {
        text-align: center;
        margin-bottom: 20px;
      }

      .logo i {
        font-size: 50px;
        color: #4a6ee0;
        margin-bottom: 10px;
        background: rgba(74, 110, 224, 0.1);
        padding: 15px;
        border-radius: 50%;
      }

      .logo h1 {
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
      }

      .tabs {
        display: flex;
        margin-bottom: 20px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 5px;
      }

      .tab-btn {
        flex: 1;
        padding: 12px;
        border: none;
        background: transparent;
        color: rgba(0, 0, 0, 0.6);
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .tab-btn.active {
        background: rgba(74, 110, 224, 0.15);
        color: #4a6ee0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .form-container {
        display: none;
      }

      .form-container.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .form-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 600;
      }

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

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 14px;
      }

      .input-with-icon {
        position: relative;
      }

      .input-with-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(0, 0, 0, 0.5);
      }

      /* Cloudflare Turnstile styling */
      .cf-turnstile {
        margin: 5px 0 15px 0 !important;
        display: block !important;
        width: 100% !important;
        min-height: 45px !important;
        max-height: 45px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 6px !important;
        padding: 5px !important;
        box-sizing: border-box !important;
        transform: scale(0.85) !important;
        transform-origin: center !important;
      }

      .cf-turnstile iframe {
        border-radius: 4px !important;
        background: transparent !important;
        width: 100% !important;
        height: 45px !important;
        max-height: 45px !important;
      }

      /* Make sure form group doesn't hide Turnstile */
      .form-group {
        margin-bottom: 10px !important;
        overflow: visible !important;
      }

      /* Reduce spacing on mobile */
      @media (max-width: 768px) {
        .cf-turnstile {
          margin: 8px 0 12px 0 !important;
          min-height: 40px !important;
          max-height: 40px !important;
          transform: scale(0.8) !important;
        }
        
        .cf-turnstile iframe {
          height: 40px !important;
          max-height: 40px !important;
        }
        
        .form-group {
          margin-bottom: 8px !important;
        }

        /* Make logo and title smaller on mobile */
        .logo img {
          width: 120px !important;
          height: 120px !important;
          padding: 12px !important;
        }

        .logo h1 {
          font-size: 32px !important;
          margin-top: 8px !important;
          font-weight: 800 !important;
          letter-spacing: 0.5px !important;
          line-height: 1.2 !important;
        }
      }

      input,
      select {
        width: 100%;
        padding: 12px 12px 12px 40px;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        color: #333;
        font-size: 14px;
        transition: all 0.3s ease;
      }

      select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
      }

      input:focus,
      select:focus {
        outline: none;
        border-color: rgba(74, 110, 224, 0.5);
        background: rgba(0, 0, 0, 0.02);
        box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.1);
      }

      input::placeholder {
        color: rgba(0, 0, 0, 0.4);
      }

      .submit-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #4a6ee0, #6a8eff);
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
        box-shadow: 0 5px 15px rgba(74, 110, 224, 0.4);
      }

      .submit-btn:hover {
        background: linear-gradient(135deg, #3a5ed0, #5a7eff);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(74, 110, 224, 0.5);
      }

      .form-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      .form-section-title {
        font-size: 18px;
        margin-bottom: 20px;
        color: #4a6ee0;
        font-weight: 600;
        display: flex;
        align-items: center;
      }

      .form-section-title i {
        margin-right: 10px;
        font-size: 20px;
      }

      .form-row {
        display: flex;
        gap: 15px;
      }

      .form-row .form-group {
        flex: 1;
      }

      .message {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 500;
        display: none;
      }

      .message.success {
        background: rgba(76, 175, 80, 0.2);
        border: 1px solid rgba(76, 175, 80, 0.5);
        display: block;
      }

      .message.error {
        background: rgba(244, 67, 54, 0.1);
        border: 1px solid rgba(244, 67, 54, 0.5);
        color: #d32f2f;
      }

      .forgot-link {
        text-align: center;
        margin-top: 12px;
        font-size: 13px;
      }

      .forgot-link a {
        color: #a0c1ff;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .forgot-link a:hover {
        color: #4a6ee0;
        text-decoration: underline;
      }

      .login-link {
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
      }

      .login-link a {
        color: #a0c1ff;
        font-weight: 600;
        text-decoration: none;
      }

      .login-link a:hover {
        text-decoration: underline;
      }

      @media (max-width: 480px) {
        .container {
          padding: 10px;
        }

        .glass-card {
          padding: 20px 15px;
          border-radius: 15px;
        }

        .form-row {
          flex-direction: column;
          gap: 0;
        }

        .logo img {
          width: 120px !important;
          height: 120px !important;
        }

        h1 {
          font-size: 28px !important;
        }
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
      }

      .modal-content {
        background: rgba(255, 255, 255, 0.98);
        margin: 5% auto;
        padding: 0;
        border-radius: 15px;
        overflow: hidden;
        width: 90%;
        max-width: 500px;
        max-height: 80vh;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.3s ease;
        display: flex;
        flex-direction: column;
      }

      @keyframes modalSlideIn {
        from {
          opacity: 0;
          transform: translateY(-50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .modal-header {
        background: linear-gradient(135deg, #4a6ee0, #6a8eff);
        color: white;
        padding: 20px 25px;
        border-radius: 15px 15px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .modal-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
      }

      .modal-header i {
        margin-right: 10px;
      }

      .close-modal {
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        line-height: 1;
        opacity: 0.8;
        transition: opacity 0.3s ease;
      }

      .close-modal:hover {
        opacity: 1;
      }

      .modal-body {
        padding: 25px;
        color: #333;
        overflow-y: auto;
        flex: 1;
      }

      .modal-body p {
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .contact-info {
        margin-bottom: 25px;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(74, 110, 224, 0.05);
        border-radius: 10px;
        border-left: 4px solid #4a6ee0;
      }

      .contact-item i {
        color: #4a6ee0;
        font-size: 20px;
        margin-right: 15px;
        margin-top: 2px;
        min-width: 20px;
      }

      .contact-item div {
        flex: 1;
      }

      .contact-item strong {
        color: #333;
        font-weight: 600;
      }

      .contact-item span {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
      }

      .modal-note {
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        border-radius: 10px;
        padding: 15px;
      }

      .modal-note p {
        margin-bottom: 10px;
        color: #856404;
        font-weight: 600;
      }

      .modal-note ul {
        margin: 0;
        padding-left: 20px;
      }

      .modal-note li {
        color: #666;
        margin-bottom: 5px;
      }

      .terms-section {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }

      .terms-text {
        font-size: 11px;
        color: rgba(0, 0, 0, 0.6);
        line-height: 1.4;
        text-align: center;
      }

      .terms-link {
        color: #4a6ee0;
        text-decoration: none;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .terms-link:hover {
        color: #3a5ed0;
        text-decoration: underline;
      }

      /* Enhanced modal styles for terms/privacy */
      .modal.show {
        display: flex !important;
      }

      .modal-content {
        max-width: 600px !important;
      }

      .modal-header h2 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
      }

      .modal-close {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
      }

      .modal-body h3 {
        color: #1a2a6c;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
      }

      .modal-body h3:first-child {
        margin-top: 0;
      }

      .modal-body p,
      .modal-body li {
        color: #555;
        line-height: 1.6;
        margin-bottom: 10px;
        font-size: 14px;
      }

      .modal-body ul {
        margin-left: 20px;
        margin-bottom: 15px;
      }

      .modal-body strong {
        color: #333;
        font-weight: 600;
      }

      #turnstile-status {
        font-size: 11px;
        color: #666;
        margin-top: 20px;
        text-align: center;
      }

      .req.invalid { color: red; }
      .req.valid { color: green; }
      .req.valid::before { content: "✓ "; }
      .req.invalid::before { content: "✗ "; }
