.offitec-login-v2 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 40px 0 60px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 179, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 255, 170, 0.18), transparent 55%),
    linear-gradient(135deg, #020c16 0%, #020815 45%, #01040b 100%);
}

.offitec-login-v2-shell {
  position: relative;
}

.offitec-login-v2-shell::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image: radial-gradient(circle at 50% 0, rgba(0, 255, 255, 0.08), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.offitec-login-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

/* SOL SÜTUN */
.offitec-login-v2-side {
  color: #e5f1ff;
}

.offitec-login-v2-logo img {
  height: 100%;        /* veya 36px, 40px zevkine göre */
  width: auto;
  max-width: 100%;
  margin-bottom: 18px;
}

.offitec-login-v2-side-title {
  font-size: 26px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.offitec-login-v2-side-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(196, 216, 235, 0.9);
  max-width: 340px;
}

.offitec-login-v2-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offitec-login-v2-tags span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #7cf3ff;
  background: rgba(3, 22, 36, 0.9);
}

/* ORTA – CARD */
.offitec-login-v2-card {
  display: flex;
  justify-content: center;
}

.offitec-login-v2-card-inner {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  padding: 26px 24px 24px;
  background: rgba(5, 20, 34, 0.96);
  border: 1px solid rgba(107, 154, 188, 0.5);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(24px);
}

.offitec-login-v2-title {
  font-size: 22px;
  margin: 0 0 4px;
  color: #ffffff;
}

.offitec-login-v2-sub {
  font-size: 13px;
  color: rgba(199, 219, 235, 0.9);
  margin: 0 0 16px;
}

/* hata */
.offitec-login-v2-alert {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  border: 1px solid rgba(255, 120, 120, 0.7);
  background: rgba(255, 80, 80, 0.16);
  color: #ffd4d4;
}

/* form */
.offitec-login-v2-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offitec-login-v2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offitec-login-v2-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offitec-login-v2-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(183, 205, 222, 0.96);
}

.offitec-login-v2-link {
  font-size: 11px;
  color: #7cf3ff;
  text-decoration: none;
}

.offitec-login-v2-link:hover {
  text-decoration: underline;
}

/* inputlar */
.offitec-login-v2-field input {
  border-radius: 999px;
  border: 1px solid rgba(112, 146, 173, 0.7);
  background: rgba(6, 27, 44, 0.96);
  padding: 9px 14px;
  font-size: 13px;
  color: #ffffff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.offitec-login-v2-field input::placeholder {
  color: rgba(163, 186, 205, 0.7);
}

.offitec-login-v2-field input:focus {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.4);
  background: rgba(7, 33, 53, 0.98);
}

/* remember me */
.offitec-login-v2-remember {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: rgba(192, 212, 228, 0.9);
}

.offitec-login-v2-remember input {
  display: none;
}

.offitec-login-v2-remember-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(137, 164, 187, 0.9);
  background: rgba(3, 19, 33, 0.95);
  position: relative;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.offitec-login-v2-remember input:checked + .offitec-login-v2-remember-box {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(0, 244, 255, 0.45);
}

.offitec-login-v2-remember input:checked + .offitec-login-v2-remember-box::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  border: 2px solid #020c16;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.offitec-login-v2-remember-label {
  user-select: none;
}

/* buton */
.offitec-login-v2-submit {
  margin-top: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #020c16;
  background: linear-gradient(90deg, #00c6ff, #00ffbf);
  box-shadow: 0 20px 50px rgba(0, 196, 255, 0.7);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.offitec-login-v2-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0, 196, 255, 0.9);
  filter: brightness(1.03);
}

/* alt metin */
.offitec-login-v2-bottom {
  margin-top: 14px;
  font-size: 12px;
  text-align: center;
  color: rgba(188, 210, 227, 0.9);
}

.offitec-login-v2-bottom a {
  color: #7cf3ff;
  text-decoration: none;
}

.offitec-login-v2-bottom a:hover {
  text-decoration: underline;
}

/* SAĞ SÜTUN – stats */
.offitec-login-v2-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offitec-login-v2-stat-card {
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: radial-gradient(circle at top left,
      rgba(0, 255, 255, 0.18),
      rgba(5, 24, 39, 0.96));
  border: 1px solid rgba(0, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
}

.offitec-login-v2-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(191, 215, 232, 0.9);
  margin: 0 0 4px;
}

.offitec-login-v2-stat-value {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}

.offitec-login-v2-stat-value span {
  font-size: 14px;
  opacity: 0.8;
  margin-left: 2px;
}

.offitec-login-v2-stat-desc {
  font-size: 12px;
  color: rgba(197, 216, 234, 0.9);
  margin: 0;
}

.offitec-login-v2-stat-pill {
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(132, 175, 205, 0.6);
  color: rgba(206, 224, 238, 0.95);
  font-size: 11px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.offitec-login-v2-stat-pill .pill-title {
  text-transform: uppercase;
  letter-spacing: .16em;
}

.offitec-login-v2-stat-pill .pill-sub {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .offitec-login-v2-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
  .offitec-login-v2-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .offitec-login-v2-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .offitec-login-v2-side-text {
    max-width: 100%;
  }
  .offitec-login-v2 {
    padding-top: 30px;
  }
}