/* ====================================================
   Premium Modern Admin Login Styling
   Clean • SaaS-Grade • No Body/Global Styles
===================================================== */

/* Main Card Container */
.admin-login-container {
  width: 80%;
  /* max-width: 460px; */
  margin: 40px auto;
  padding: 45px 40px;
  border-radius: 20px;
display: flex;
justify-content: space-around;
gap: 100px;
  /* Elegant soft shadow */
  background: #ffffff;

}


.section{
    box-shadow:
      0 8px 25px rgba(0,0,0,0.05),
      0 2px 8px rgba(0,0,0,0.04);

  border: 1px solid #e6e9f2; /* light border */
  animation: fadeSlide 0.4s ease;
  padding: 40px 50px;
  border-radius: 15px;
}


/* Intro Animation */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section Title */
.section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c2a4a;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ----------------------------------------------------
   Labels
----------------------------------------------------- */
label {
  font-size: 14px;
  font-weight: 600;
  color: #25324d;
  margin-bottom: 6px;
  display: block;
}

/* ----------------------------------------------------
   Inputs and Select (Unified Styling)
----------------------------------------------------- */
input,
select {
  width: 100%;
  padding: 14px 16px;

  background: #f8faff;
  border: 1px solid #ccd6e5;
  border-radius: 12px;

  font-size: 15px;
  color: #1e2d42;
  transition: 0.25s ease;
  margin-bottom: 22px;
}

input:hover,
select:hover {
  border-color: #9eb3d5;
}

input:focus,
select:focus {
  background: #ffffff;
  border-color: #3b7dff;
  box-shadow: 0 0 0 3px rgba(59,125,255,0.16);
  outline: none;
}

/* ----------------------------------------------------
   Button (Premium Gradient)
----------------------------------------------------- */
.adminBtm {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;

  background: linear-gradient(135deg, #3b7dff 0%, #264dce 100%);
  color: #ffffff;

  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.5px;

  transition: 0.25s ease;
  box-shadow: 0 6px 15px rgba(59, 125, 255, 0.25);
}

.adminBtm:hover {
  background: linear-gradient(135deg, #325fff, #1f3fb6);
  transform: translateY(-2px);
}

.adminBtm:active {
  transform: scale(0.97);
}

/* ----------------------------------------------------
   Error Message (Clean and Modern)
----------------------------------------------------- */
.error {
  background: #ffe8e8;
  border-left: 6px solid #e02f2f;

  padding: 12px;
  border-radius: 10px;
  color: #b10000;

  margin-bottom: 20px;
  font-size: 14px;

  animation: shake 0.25s ease;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 450px) {
  .admin-login-container {
    padding: 35px 25px;
    margin: 20px;
  }
}
