* { box-sizing: border-box; }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: #1e293b;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .container {
      position: relative;
      width: 650px;
      height: 700px;
      background: #1b2f70;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      padding: 30px;
      overflow: hidden;
      z-index: 2;
    }
    .container::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 280px;
      height: 280px;
      background-image: url("photo_2023-02-22_10-23-38.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.06;
      border-radius: 50%;
      z-index: 3;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      position: relative;
      z-index: 5;
    }
    .title-group {
      display: flex;
      flex-direction: column;
    }
    .title-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .title-group h1 {
      margin: 0;
      font-size: 42px;
      font-weight: 700;
      color: #ffffff;
    }
    .premium-label {
      background-color: #272727;
      font-weight: 600;
      color: #E9B544;
      padding: 0px 6px;
      font-size: 22px;
      border-radius: 4px;
    }
    .made-by {
      font-size: 16px;
      font-weight: 400;
      color: #ffffff;
      margin-top: 0px;
    }
    .logo img {
      margin-top: 0px;
      height: 100px;
      width: 100px;
      border-radius: 50%;
    }
    .auth-box {
      background: #1e3a8a;
      padding: 30px;
      border-radius: 14px;
      box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.15);
      z-index: 6;
      position: relative;
    }
    .auth-title {
      text-align: center;
      font-size: 28px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 30px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-weight: 500;
      margin-bottom: 6px;
      color: #dbeafe;
    }
    .form-group input {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      border: 2px solid #3b82f6;
      border-radius: 8px;
      background-color: #ffffff;
      color: #1e3a8a;
      transition: border-color 0.3s ease;
    }
    .form-group input:focus {
      border-color: #60a5fa;
      outline: none;
    }
    .login-btn {
      width: 100%;
      background: #3b82f6;
      color: white;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
      transition: background 0.3s ease;
    }
    .login-btn:hover {
      background: #2563eb;
    }
    .button-row {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }
    .button-row button {
      flex: 0 0 48%;
      padding: 10px;
      border: none;
      background: #3b82f6;
      color: white;
      font-weight: 500;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .button-row button:hover {
      background: #2563eb;
    }
    .version {
      text-align: right;
      margin-top: 25px;
      font-size: 15px;
      color: #dddddd;
    }
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 9998;
}

.ca.fade-out {
  animation: fadeScaleUp 3s ease forwards;
}

@keyframes fadeScaleUp {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -80%) scale(0.8);
    visibility: hidden;
  }
}
    .ca {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      width: 280px;
      background: white;
      color: #1e3a8a;
      font-weight: 600;
      font-size: 18px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transform: translate(-50%, -50%);
      z-index: 9999;
      text-align: center;
      padding: 20px;
    }
    .ca .loader {
      margin-top: 15px;
      width: 100%;
      height: 6px;
      background: #dbeafe;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .ca .loader::before {
      content: '';
      position: absolute;
      left: -40%;
      width: 40%;
      height: 100%;
      background: #3b82f6;
      animation: loading 1.2s linear infinite;
      border-radius: 4px;
    }
    @keyframes loading {
      0% { left: -40%; }
      100% { left: 100%; }
    }
    .ca button {
      margin-top: 12px;
      padding: 6px 14px;
      background: #2563eb;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: none;
    }
	@keyframes shake {
  0% { transform: translate(-50%, -50%) translateX(0); }
  25% { transform: translate(-50%, -50%) translateX(-10px); }
  50% { transform: translate(-50%, -50%) translateX(10px); }
  75% { transform: translate(-50%, -50%) translateX(-6px); }
  100% { transform: translate(-50%, -50%) translateX(0); }
}

.ca.shake {
  animation: shake 0.5s;
}

