
/* ===== Login Card ===== */
.card {
  border: none;
  border-radius: 16px;
  padding: 35px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* ===== Welcome Text ===== */
.text-center h3 {
  color: #222;
  font-weight: 700;
  font-size: 28px;
}

.text-center p {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
}


/* ===== Labels & Inputs ===== */
.form-label {
  font-weight: 500;
  color: #555;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-control:focus {
  border-color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.15);
}

/* ===== Button ===== */
.btn-primary {
  background-color: #805ad5;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6b46c1;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}


/* ===== Register Page Button ===== */
.btn-success {
  background-color: #805ad5 !important;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #6b46c1 !important;
  transform: translateY(-1px);
}



/* ===== Link ===== */
a {
  color: #805ad5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6b46c1;
  text-decoration: underline;
}

/* ===== Alert ===== */
.alert {
  border-radius: 10px;
}


/* ===============================
   Infotap Choose Type Page
   =============================== */
body.bg-light {
  background-color: #f9fafc;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}


/* Page title */
h3.fw-bold {
  color: #222;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Description text */
p.text-muted {
  color: #666 !important;
  font-size: 15px;
}

/* Buttons */
button[type="submit"] {
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

/* Personal (Purple) */
button[value="personal"] {
  border-color: #8852c9;
  color: #8852c9;
  background: #fff;
}
button[value="personal"]:hover,
button[value="personal"]:focus {
  background: #8852c9;
  color: #fff;
  box-shadow: 0 4px 14px rgba(136, 82, 201, 0.3);
}

/* Company (Green) */
button[value="company"] {
  border-color: #16a085;
  color: #16a085;
  background: #fff;
}
button[value="company"]:hover,
button[value="company"]:focus {
  background: #16a085;
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 160, 133, 0.3);
}

/* Hover animation */
button[type="submit"]:active {
  transform: scale(0.97);
}


