/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f172a, #111827);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  color: #f5f5f5;
}

.container {
  background-color: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 1px solid #2e3440;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff; /* PURE WHITE */
  background: none;
  /* -webkit-background-clip: unset; */
}
.logo i {
  font-size: 1.8rem;
  color: #00c6ff;
}

.form-header h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #f5f5f5;
}

.form-header p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.form-container {
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.input-group {
  flex: 1;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c6ff;
  font-size: 1rem;
}

input, select {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #f5f5f5;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus, select:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.25);
  background: #111827;
}

select {
  appearance: none;
  cursor: pointer;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #00c6ff, #6a11cb);
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

.form-footer {
  margin-top: 25px;
  text-align: center;
}

.form-footer p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.form-footer a {
  color: #00c6ff;
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
