body {
    background: linear-gradient(180deg, #090040 0%, #22c5c4 100%);
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}


.navbar .navbar-brand {
  color: #fff;
}
.navbar .navbar-nav .nav-link {
  color: #fff;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 30px;
}

.auth-box {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.form-check-label, .form-label {
  font-weight: 500;
  color: #444;
}
.form-check-label,
.form-check-input {
  cursor: pointer;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #f0d86a;
  box-shadow: 0 0 5px rgba(240, 173, 78, 0.5);
}

.btn-primary {
  background-color: #f0d86a;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-primary:hover {
  background-color: #f0d76acb;
  color: #000;
}

.toggle-password {
  border-radius: 0 8px 8px 0;
  border: 1px solid #ccc;
  background: #fff;
}

.input-group .form-control {
  border-radius: 8px 0 0 8px;
}

.form-check-input {
  cursor: pointer;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.btn-google {
  background-color: #090040;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-google:hover {
  background-color: #0f006e;
  color: #fff;
}
.or-box {
  text-align: center;
}
.or-box span {
  position: relative;
}
.or-box span::before {
  content: '';
  width: 120px;
  height: 1px;
  background: #e9e9e9;
  left: 30px;
  top: 50%;
  position: absolute;
}
.or-box span::after {
  content: '';
  width: 120px;
  height: 1px;
  background: #e9e9e9;
  right: 30px;
  top: 50%;
  position: absolute;
}
p {
  margin-bottom: 0;
}

.error-message {
  color: red;
  font-size: 13px;
  display: none;
  text-align: left;
}

.errorlist {
  list-style-type: none;
  padding: 0;
}
.errorlist li {
  font-size: 14px;
  line-height: 18px;
  color: red;
}