/* CSS Document */
    :root {
      --bg: #000000;
      --card: rgba(18, 18, 18, 0.92);
      --text: #ffffff;
      --muted: #9ca3af;
      --border: rgba(255, 255, 255, 0.12);
      --orange: #ff6a00;
      --orange-soft: rgba(255, 106, 0, 0.18);
    }

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

    body {
      min-height: 100vh;
      font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    .login-logo {
      position: absolute;
      top: 5%;
      left: 5%;
      display: flex;
      justify-content: flex-start;
      z-index: 10;
    }

    .login-logo img {
      height: 80px;
      opacity: 0.96;
    }

    .login-page {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      padding: 1.5rem;
      background:
        radial-gradient(circle at center, rgba(255, 106, 0, 0.08), transparent 34%),
        #000000;
    }

    .login-card {
      overflow: hidden;
      width: 100%;
      max-width: 390px;
      padding: 2.2rem;
      border-radius: 24px;
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 106, 0, 0.08),
        0 0 34px rgba(255, 106, 0, 0.08);
      backdrop-filter: blur(16px);
    }

    .login-card__header {
      text-align: center;
      margin: -2.2rem -2.2rem 1.7rem;
      padding: 0.7rem 1.2rem;
      background: linear-gradient(180deg, #2a7b83, #23656c);
      border-radius: 24px 24px 0 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .login-card__footer {
      text-align: center;
      margin: 1.7rem -2.2rem -2.2rem -2.2rem;
      padding: 0.7rem 1.2rem;
      background: linear-gradient(180deg, #23656c, #2a7b83);
      border-radius: 0 0 24px 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .login-brand__logo {
      display: none;
    }

    .login-card__header h1 {
      color: #f8fafc;
      font-size: 1.55rem;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.45rem;
    }

    .login-card__header p {
      margin-top: 0.45rem;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .login-form input {
      width: 100%;
      height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.045);
      color: #ffffff;
      padding: 0 1rem;
      font-size: 0.95rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .login-form input::placeholder {
      color: rgba(255, 255, 255, 0.48);
    }

    .login-form input:focus {
      outline: none;
      border-color: rgba(255, 106, 0, 0.75);
      background: rgba(255, 255, 255, 0.065);
      box-shadow: 0 0 0 4px var(--orange-soft);
    }

    .login-form__options {
      display: flex;
      justify-content: flex-end;
      margin: 0.1rem 0 0.35rem;
    }

    .login-link {
      color: var(--orange);
      font-size: 0.9rem;
      text-decoration: none;
    }

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

    .login-submit {
      width: 100%;
      height: 50px;
      border: none;
      border-radius: 14px;
      background: linear-gradient(135deg, #3a3a3a, #262626);
      color: #ffffff;
      font-size: 0.98rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .login-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
    }

    @media (max-width: 1024px) {
      .login-page {
        justify-content: flex-start;
        padding-top: 2.5rem;
      }

      .login-logo {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.8rem;
      }

      .login-logo img {
        height: 80px;
      }

      .login-card {
        overflow: hidden;
        padding: 1.8rem;
        border-radius: 20px;
      }
    }
