/* === AUTH FULLSCREEN LAYOUT === */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.auth-body {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Absolute centering */
.auth-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 420px;
  z-index: 2;
}



/* Card */
.auth-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Logo */
.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo img {
  height: 180px;
}

/* Title */
.auth-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* Form */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.btn-primary {
  background: #ea7b3f;
  color: white;
}

.btn-primary:hover {
  background: #d8662f;
}

.form-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.form-footer a {
  color: #ea7b3f;
  text-decoration: none;
}
/* ===== FLOAT ANIMATIONS ===== */

@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes floatMed {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}

@keyframes floatFast {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-40px); }
  100% { transform: translateY(0px); }
}
.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.auth-floats {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* FLOAT ELEMENT BASE */
.auth-float {
  position: absolute;
  opacity: 0.35;
  will-change: transform;
  animation-name: floatMotion;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Motion Keyframes */
@keyframes floatMotion {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(25px, -30px) rotate(10deg);
  }
  50% {
    transform: translate(-20px, -50px) rotate(-12deg);
  }
  75% {
    transform: translate(30px, -20px) rotate(8deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

/* Different speeds */
.auth-float.slow {
  animation-duration: 28s;
}

.auth-float.med {
  animation-duration: 18s;
}

.auth-float.fast {
  animation-duration: 12s;
}

/* Stagger start times */
.auth-float:nth-child(1) { animation-delay: 0s; }
.auth-float:nth-child(2) { animation-delay: 3s; }
.auth-float:nth-child(3) { animation-delay: 6s; }
.auth-float:nth-child(4) { animation-delay: 9s; }
.auth-float:nth-child(5) { animation-delay: 12s; }
.auth-float:nth-child(6) { animation-delay: 15s; }

/* ===== FLOAT SIZE RESPONSIVE ===== */

.auth-float {
  width: 10vw;
  height: 10vw;
  min-width: 50px;
  min-height: 50px;
}

.auth-float img {
  width: 100%;
  height: 100%;
}
/* ===== ANIMATED GRADIENT BACKGROUND ===== */

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      135deg,
      #f4b16f,
      #ea7b3f,
      #ff9966,
      #ff5e62
  );
  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-error {
  position: absolute;
  top: -6px;
  right: 0;
  font-size: 12px;
  color: #e74c3c;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.form-control.error {
  border-color: #e74c3c;
}
.field-error {
  font-size: 12px;
  color: #e74c3c;
  text-align: right;
  margin-top: 4px;
}

.input-error {
  border-color: #e74c3c !important;
}

  