@charset "UTF-8";

/* Reset และ Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  margin: 0;
  font-family: "Geologica", sans-serif;
  overflow: hidden;
}

/* AI-Themed Background */
body {
  background: linear-gradient(135deg, #000000, #1a0f00, #2d1500, #0a0a0a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 140, 0, 0.05) 2px, rgba(255, 140, 0, 0.05) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 140, 0, 0.05) 2px, rgba(255, 140, 0, 0.05) 4px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Animated Grid Background */
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Particle Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Main Container - Glassmorphism */
main {
  position: relative;
  margin: auto;
  max-width: 850px;
  text-align: center;
  padding: 60px 50px;
  width: 90%;
  z-index: 10;
  
  /* Glassmorphism Effect */
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 30px;
  border: 2px solid rgba(255, 140, 0, 0.3);
  
  /* Neon Glow */
  box-shadow: 
    0 0 80px rgba(255, 107, 0, 0.4),
    0 0 40px rgba(255, 140, 0, 0.3),
    inset 0 0 20px rgba(255, 140, 0, 0.05);
  
  animation: boxGlow 3s ease-in-out infinite alternate;
}

@keyframes boxGlow {
  0% {
    box-shadow: 
      0 0 80px rgba(255, 107, 0, 0.4),
      0 0 40px rgba(255, 140, 0, 0.3),
      inset 0 0 20px rgba(255, 140, 0, 0.05);
  }
  100% {
    box-shadow: 
      0 0 120px rgba(255, 107, 0, 0.6),
      0 0 60px rgba(255, 140, 0, 0.5),
      inset 0 0 30px rgba(255, 140, 0, 0.08);
  }
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease;
}

.logo-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 140, 0, 0.1));
  border: 3px solid rgba(255, 140, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(255, 107, 0, 0.3),
    inset 0 0 20px rgba(255, 140, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.logo-circle i {
  font-size: 45px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(255, 107, 0, 0.3),
      inset 0 0 20px rgba(255, 140, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 50px rgba(255, 107, 0, 0.5),
      inset 0 0 30px rgba(255, 140, 0, 0.2);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title Styling */
main h1 {
  font-size: 48px;
  margin: 0 0 15px 0;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9500 0%, #ffa500 50%, #ffb347 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite;
  text-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
  letter-spacing: 3px;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

main h1 .mark {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s ease infinite;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8));
}

main h1 .title-word {
  background: linear-gradient(135deg, #ffb347 0%, #ffc266 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 4s ease infinite;
  filter: drop-shadow(0 0 20px rgba(255, 179, 71, 0.8));
}

/* Description Text */
.subtitle {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-family: "Kanit", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1px;
}

main p {
  font-size: 24px;
  margin: 0 0 20px 0;
  font-family: "Kanit", sans-serif;
  color: #ffffff;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 140, 0, 0.4);
  font-weight: 400;
  line-height: 1.6;
}

/* Form Body */
.form-body {
  animation: fadeInUp 1s ease 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input Group Container */
.input-group {
  position: relative;
  margin: 30px 0;
}

/* Input Icon */
.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255, 140, 0, 0.6);
  transition: all 0.3s ease;
  z-index: 2;
}

/* Input Styling */
.input-group input {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 18px 20px 18px 55px;
  font-family: "Kanit", sans-serif;
  
  /* Glassmorphism Input */
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 140, 0, 0.2);
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 140, 0, 0.05);
}

/* Floating Label */
.floating-label {
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Kanit", sans-serif;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  padding: 0 5px;
}

/* Input Border Animation */
.input-border {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff9500, #ffa500);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(255, 149, 0, 0.6);
}

/* Input Focus State */
.input-group input:focus {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 140, 0, 0.6);
  box-shadow: 
    0 0 25px rgba(255, 140, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 140, 0, 0.15);
}

.input-group input:focus ~ .input-icon {
  color: #ff9500;
  transform: translateY(-50%) scale(1.1);
}

.input-group input:focus ~ .input-border {
  width: 100%;
}

.input-group input:focus ~ .floating-label,
.input-group input:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  color: #ff9500;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 50%);
  font-weight: 500;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px 30px;
  font-size: 20px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  margin-top: 35px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  
  /* Gradient Background */
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  color: #ffffff;
  
  /* Effects */
  box-shadow: 
    0 10px 30px rgba(255, 107, 0, 0.4),
    0 0 20px rgba(255, 107, 0, 0.3);
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 45px rgba(255, 107, 0, 0.6),
    0 0 35px rgba(255, 107, 0, 0.5);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 
    0 8px 25px rgba(255, 107, 0, 0.5),
    0 0 20px rgba(255, 107, 0, 0.4);
}

/* Form Footer */
.form-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 140, 0, 0.2);
  animation: fadeIn 1.2s ease 0.6s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: "Kanit", sans-serif;
}

.security-badge i {
  color: #ff9500;
  font-size: 16px;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Error Message */
.error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(220, 38, 38, 0.35);
  border: 2px solid rgba(239, 68, 68, 0.8);
  border-radius: 8px;
  color: #ffffff !important;
  font-size: 14px !important;
  backdrop-filter: blur(10px);
  animation: shake 0.5s ease;
  box-shadow: 
    0 0 20px rgba(239, 68, 68, 0.4),
    0 4px 12px rgba(220, 38, 38, 0.5);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.error i {
  color: #ffffff;
  font-size: 18px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.error small {
  color: #ffffff !important;
  font-weight: 500;
}

.error a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
  border-bottom: 2px solid rgba(255, 204, 0, 0.6);
  transition: all 0.3s ease;
}

.error a:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* Footer Styling */
footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: "Kanit", sans-serif;
  z-index: 100;
  transition: transform 0.3s ease;
}

footer:hover {
  transform: scale(1.05);
}

footer a {
  display: block;
  text-decoration: none;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
}

footer a img {
  border-radius: 15px;
  transition: all 0.3s ease;
}

footer a:hover img {
  filter: brightness(1.2);
}

/* AI Loading Animation - Hexagon Scanner */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000, #0a0a0a);
  display: none;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.ai-loader-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Hexagon Loader */
.hexagon-loader {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 50px;
}

.hex-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hexagon Shape */
.hexagon {
  position: absolute;
  width: 60px;
  height: 34px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 140, 0, 0.1));
  border-left: 2px solid rgba(255, 140, 0, 0.6);
  border-right: 2px solid rgba(255, 140, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  animation: hexagonPulse 2s ease-in-out infinite;
}

.hexagon::before,
.hexagon::after {
  content: '';
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.hexagon::before {
  bottom: 100%;
  border-bottom: 17px solid rgba(255, 107, 0, 0.3);
  border-left-color: transparent;
  border-right-color: transparent;
}

.hexagon::after {
  top: 100%;
  border-top: 17px solid rgba(255, 140, 0, 0.1);
  border-left-color: transparent;
  border-right-color: transparent;
}

/* Hexagon Positions */
.hex-1 {
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.hex-2 {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.3s;
}

.hex-3 {
  right: 20%;
  top: 50%;
  transform: translate(50%, -50%);
  animation-delay: 0.6s;
}

.hex-4 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.9s;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.5), rgba(255, 140, 0, 0.3));
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.8);
}

.hex-5 {
  left: 35%;
  top: 35%;
  transform: translate(-50%, -50%);
  animation-delay: 0.2s;
}

.hex-6 {
  right: 35%;
  top: 35%;
  transform: translate(50%, -50%);
  animation-delay: 0.5s;
}

.hex-7 {
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  animation-delay: 0.7s;
}

@keyframes hexagonPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Scanner Line */
.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 0, 0.8) 50%, 
    transparent 100%);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
  animation: scannerMove 3s ease-in-out infinite;
}

@keyframes scannerMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Progress Bar */
.loading-progress {
  margin: 40px auto 30px;
  max-width: 400px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #ff9500, #ffa500);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  animation: progressFill 2s ease-in-out infinite;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-family: "Kanit", sans-serif;
}

.progress-label {
  font-size: 14px;
  color: #ff9500;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  animation: labelPulse 1.5s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.progress-percent {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* Loading Status */
.loading-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.status-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Kanit", sans-serif;
  letter-spacing: 1px;
}

.status-dots {
  display: flex;
  gap: 5px;
}

.status-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9500;
  box-shadow: 0 0 10px rgba(255, 149, 0, 0.6);
  animation: dotPulse 1.4s ease-in-out infinite;
}

.status-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.status-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.status-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Loading */
@media only screen and (max-width: 768px) {
  .hexagon-loader {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
  }
  
  .hexagon {
    width: 50px;
    height: 28px;
  }
  
  .hexagon::before {
    border-left-width: 25px;
    border-right-width: 25px;
    border-bottom-width: 14px;
  }
  
  .hexagon::after {
    border-left-width: 25px;
    border-right-width: 25px;
    border-top-width: 14px;
  }
  
  .loading-progress {
    max-width: 320px;
  }
  
  .progress-label {
    font-size: 12px;
  }
  
  .progress-percent {
    font-size: 14px;
  }
  
  .status-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .hexagon-loader {
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
  }
  
  .hexagon {
    width: 40px;
    height: 23px;
  }
  
  .hexagon::before {
    border-left-width: 20px;
    border-right-width: 20px;
    border-bottom-width: 12px;
  }
  
  .hexagon::after {
    border-left-width: 20px;
    border-right-width: 20px;
    border-top-width: 12px;
  }
  
  .loading-progress {
    max-width: 280px;
  }
  
  .progress-bar {
    height: 4px;
  }
  
  .progress-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .progress-percent {
    font-size: 13px;
  }
  
  .status-text {
    font-size: 14px;
  }
  
  .status-dots .dot {
    width: 6px;
    height: 6px;
  }
}

/* Utility Classes */
.d-none {
  display: none;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  main {
    width: 95%;
    padding: 40px 25px;
    border-radius: 20px;
  }
  
  .logo-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .logo-circle i {
    font-size: 35px;
  }
  
  main h1 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 14px;
  }
  
  .form-header {
    margin-bottom: 30px;
  }
  
  .input-group {
    margin: 25px 0;
  }
  
  .input-group input {
    font-size: 16px;
    padding: 16px 20px 16px 50px;
  }
  
  .input-icon {
    left: 18px;
    font-size: 18px;
  }
  
  .floating-label {
    left: 50px;
    font-size: 14px;
  }
  
  .submit-btn {
    font-size: 18px;
    padding: 16px 25px;
    margin-top: 30px;
  }
  
  .form-footer {
    margin-top: 25px;
  }
  
  .security-badge {
    font-size: 12px;
  }
  
  footer {
    left: 50%;
    right: auto;
    bottom: 15px;
    transform: translateX(-50%);
  }
  
  footer:hover {
    transform: translateX(-50%) scale(1.05);
  }
  
  footer a img {
    width: 180px;
  }
}

@media only screen and (max-width: 480px) {
  main {
    padding: 35px 20px;
  }
  
  .logo-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .logo-circle i {
    font-size: 30px;
  }
  
  main h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .form-header {
    margin-bottom: 25px;
  }
  
  .input-group {
    margin: 20px 0;
  }
  
  .input-group input {
    font-size: 15px;
    padding: 14px 18px 14px 45px;
  }
  
  .input-icon {
    left: 15px;
    font-size: 16px;
  }
  
  .floating-label {
    left: 45px;
    font-size: 13px;
  }
  
  .submit-btn {
    font-size: 16px;
    padding: 14px 20px;
    gap: 10px;
  }
  
  .security-badge {
    font-size: 11px;
  }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
}


