/* -------------------------- */
    /*   BROCKMANN FONT EKLEME    */
    /* -------------------------- */
    @font-face {
      font-family: 'Brockmann';
      src: url('../font/Brockmann.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Brockmann', sans-serif;
      background: radial-gradient(circle at center, #111827 0, #020617 60%, #020617 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      color: #fff;
    }

    .card {
      width: 440px;
      background: rgba(5, 8, 22, 0.96);
      border-radius: 26px;
      padding: 46px 48px 36px;
      text-align: center;
      box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .logo {
      width: 76px;
      height: 76px;
      border-radius: 24px;
      background: #DFD9D9;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 34px;
    }

    .logo svg {
      width: 700px;
      height: 700px;
    }

    h1 {
      font-size: 32px;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .subtitle {
      font-size: 14px;
      color: #9ca3af;
      margin-bottom: 32px;
    }

    .field-label {
      text-align: left;
      font-size: 14px;
      margin-bottom: 8px;
      color: #e5e7eb;
      font-weight: 600;
    }

    .input-group {
      position: relative;
      margin-bottom: 12px;
    }

    .input-icon {
      position: absolute;
      top: 50%;
      left: 16px;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: #020617;
      border-radius: 10px;
      border: 1px solid #1a2333;
      color: #6b7280;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    input {
      width: 100%;
      height: 54px;
      padding: 0 16px 0 62px;
      border-radius: 14px;
      border: 1px solid #1f2937;
      background: #020617;
      color: #e5e7eb;
      font-size: 14px;
      outline: none;
      transition: 0.15s;
      font-family: 'Brockmann';
    }

    input::placeholder {
      color: #6b7280;
    }

    input:focus {
      border-color: #00e6ff;
      box-shadow: 0 0 0 1px rgba(0, 230, 255, 0.45);
    }

    .help-text {
      font-size: 12px;
      color: #6b7280;
      text-align: left;
      margin-bottom: 26px;
    }

    .primary-btn {
      width: 100%;
      border: none;
      padding: 15px 24px;
      border-radius: 9px;
      background: linear-gradient(90deg, #00ffa6, #00e0ff);
      color: #000;
      font-size: 15px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.15s;
      font-family: 'Brockmann';
    }

    .primary-btn:hover {
      transform: translateY(-1px);
      background: linear-gradient(90deg, #096a7a, #096a7a);
    }

    .primary-btn:active {
      transform: translateY(0);
      box-shadow: 0 14px 28px rgba(0, 217, 245, 0.45);
    }

    .footer-box {
      margin-top: 30px;
      padding: 16px 20px;
      font-size: 12px;
      background: #050b18;
      border-radius: 18px;
      border: 1px solid rgba(150, 160, 180, 0.12);
      color: #6b7280;
    }
	
	.error {
		color: #f97373;
		font-size: 12px;
		margin-top: 6px;
		text-align: left;
	}
	
    .footer-box a {
      color: #00e6ff;
      font-weight: 600;
      text-decoration: none;
    }

    @media (max-width: 480px) {
      .card {
        width: 100%;
        padding: 36px 26px 28px;
      }
	  
    }
	