:root {
  --primary: #248dce;
  --secondary: #1262a1;
  --accent: #a5cf53;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #21BCFF 0%, #2984D1 50%, #10598A 100%);
}
body {
  height: 100vh;
  width: 100vw;
  position: relative;
}

input {
  color-scheme: dark;
}
.verification-container {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 18px;
  max-width: 90vw;
  z-index: 2;
  border: 4px solid rgba(165, 207, 83, 0.25);
}

.alert{
  background: linear-gradient(135deg, rgba(36,141,206,0.4), rgba(165,207,83,0.7));
  color: #222 !important;
  padding: 16px 56px 16px 76px !important;
  border-radius: 8px !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  display: inline-block !important;
  position: absolute !important;
  top: 80px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-weight: 500 !important;
  min-width: 300px !important;
  z-index: 9999;
}

.login-container {
  background: linear-gradient(135deg, #21BCFF 0%, #2984D1 50%, #10598A 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 150, 200, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 120, 180, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.login-form-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: rgba(30, 30, 50, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 180, 220, 0.3);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-logo {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo img {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 180, 220, 0.5));
}

.login-title {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.login-subtitle {
  text-align: center;
  color: #00b4dc;
  font-size: 14px;
  margin-bottom: 35px;
  font-weight: 500;
}

.form-group-login {
  margin-bottom: 20px;
}

.form-group-login label {
  display: block;
  color: #00b4dc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group-login input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 180, 220, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group-login input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group-login input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 180, 220, 0.6);
  box-shadow: 0 0 15px rgba(0, 180, 220, 0.3);
}

.form-check-login {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.form-check-login input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #00b4dc;
}

.form-check-login label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  cursor: pointer;
  margin: 0;
  text-transform: none;
  font-weight: 400;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00b4dc 0%, #0090c8 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 180, 220, 0.3);
  margin-bottom: 15px;
}

.btn-login:hover {
  background: linear-gradient(135deg, #00d4fc 0%, #00a8e8 100%);
  box-shadow: 0 12px 35px rgba(0, 180, 220, 0.5);
  transform: translateY(-2px);
}

.btn-login:active {
  transform: translateY(0);
}

.login-footer-links {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 180, 220, 0.2);
}

.login-footer-links a {
  color: #00b4dc;
  text-decoration: none;
  font-size: 13px;
  margin: 0 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.login-footer-links a:hover {
  color: #00d4fc;
  text-decoration: underline;
}

.login-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ff6b6b;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  text-align: center;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff82;
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: #FFF;
}

.form-group-login .password-wrapper input {
  padding-right: 45px;
}