@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  overflow: hidden;
  background: black;
}

/* Main container */
.main-container {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Left section (AI orb + titles) */
.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* AI orb container */
.ai-orb-container {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.ai-video-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  left: -140px;
}

.ai-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
}

.ai-outer-layer {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: 2;
}

.ai-outer-layer1 {
  position: absolute;
  bottom: -90%;
  left: -140%;
  width: 292%;
  height: 300%;
  z-index: 2;
}

.ai-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  z-index: 0;
}

/* Titles */
.title-section {
  z-index: 2;
  margin-bottom: 40px;
  position: absolute;
  left: 60px;
  top: 8%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-title {
  color: #d1d1d1;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.main-title1,
.subtitle {
  color: #d1d1d1;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

/* Right section (login form) */
.right-section {
  width: 469px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-container {
  width: 100%;
  max-width: 360px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #007ad0;
  backdrop-filter: blur(20px);
}

/* Labels */
.input-label {
  color: #eaf6ff;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: -12px;
  display: block;
}

.input-label1 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Input fields */
.input-container {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #04141f;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #007ad0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
}

.form-input::placeholder {
  color: #086ab0;
}

/* Password toggle icon */
.password-toggle {
  position: absolute;
  right: 12px;
  top: 64%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #64b5f6;
}

/* Password toggle icon */
.password-toggle1 {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}

.password-toggle1:hover {
  color: #64b5f6;
}

/* Status messages */
.status-message {
  margin-top: 15px;
  /* padding: 10px; */
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.status-success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

.status-error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ef5350;
}

/* Floating particles */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(100, 181, 246, 0.6);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

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

.mt-40 {
  margin-top: 200px;
}
