﻿/* LOGIN CARD */
.login-card {
  background: #0d2c54;
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #fff;
}

/* TITLE */
.login-card h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* INPUT */
.modern-input {
  width: 100% !important;
  padding: 12px !important;
  border-radius: 8px !important;
  border: none !important;
  outline: none !important;
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}

.modern-input::placeholder {
  color: #ddd;
}

/* BUTTON */
.login-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: Black;
  font-weight: bold;
  cursor: pointer;
}

.login-btn:hover {
  transform: scale(1.05);
}

/* ERROR */
.error {
  color: #ff4d4d;
  font-size: 12px;
}

/* MESSAGE */
.divMsg {
  color: #ff4d4d;
  margin-bottom: 10px;
  text-align: center;
}
.form-group label {
  text-align: left !important;
  display: block;
  width: 100%;
}


