/* Global Styles */
body {
  background: #f39205; /* Soft light gray background */
  color: #333; /* Dark gray text for readability */
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Background Circles */
body::before,
body::after {
  content: "";
  background: rgba(0, 123, 255, 0.2); /* Light blue circle */
  position: fixed;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  z-index: -1;
  animation: moveCircle 10s infinite ease-in-out;
}

body::before {
  top: -150px;
  left: -150px;
}

body::after {
  bottom: -150px;
  right: -150px;
}

/* Circle Animation */
@keyframes moveCircle {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5%, 5%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body::before,
  body::after {
    height: 250px;
    width: 250px;
  }
}

/* Logo Styles */
.logo {
  max-width: 160px;
  margin: 0 auto;
  display: block;
  padding: 15px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1); /* Slight zoom effect */
}

/* Custom Control Styles */
.custom-control-label {
  margin: 1px 0 0;
  user-select: none;
}

/* Card Styles */
.card-signin {
  border: 0;
  border-radius: 12px;
  background: #007bff; /* Soft blue background */
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.1); /* Soft blue shadow */
  transition: transform 0.3s ease-in-out;
}

.card-signin:hover {
  transform: translateY(-5px);
}

.card-signin .card-header {
  font-weight: 400;
  font-size: 1.4rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #fff;
  padding: 20px;
}

/* Login Form Header */
.login-form-head {
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  border-bottom: 2px solid #eee;
}

.login-form-head h4 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #007bff;
  margin: 0;
}

/* Card Body */
.card-signin .card-body {
  padding: 2rem;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

/* Form Styles */
.form-signin {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  text-align: center;
}

.form-signin .btn,
.form-signup .btn,
.btn-register {
  font-size: 14px;
  letter-spacing: 0.1rem;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s;
}

.form-signin .btn {
  background-color: #007bff; /* Primary blue */
  color: white;
  border: none;
}

.form-signin .btn:hover {
  background-color: #0056b3; /* Darker blue */
  transform: scale(1.05);
}

.form-signup .btn {
  background-color: #28a745; /* Green color */
  color: white;
}

.form-signup .btn:hover {
  background-color: #218838; /* Darker green */
  transform: scale(1.05);
}

/* Form Control Styles */
.form-signin .form-control,
.form-signup .form-control,
select.form-control {
  padding: 12px 20px;
  border: 2px solid #007bff; /* Blue border */
  border-radius: 25px;
  height: auto;
  margin-bottom: 20px;
}

.form-signin .form-control:focus,
.form-signup .form-control:focus {
  border-color: #0056b3;
  box-shadow: none;
}

/* Custom Control Styles */
.custom-control-label:before {
  background: #007bff;
  border-radius: 50% !important;
}

.custom-control {
  display: inline-block;
}

/* Button Link Styles */
.btn-link {
  text-align: center;
  display: block;
  color: #007bff;
  font-size: 16px !important;
  transition: all 0.3s;
}

.btn-link:hover {
  color: #0056b3;
}

/* Alert Styles */
.alert-success {
  color: #fff;
  background-color: #28a745;
  border-color: #218838;
  border-radius: 15px;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}