body.login-body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #3f1766;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.logo {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

.title {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.login-container {
  background: white;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  padding-top: 30px;
  border-radius: 25px;
  margin-top: 15px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.login-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.input-group input {
  width: 85%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.terms {
  text-align: center;
  margin: 15px 0 10px;
  font-size: 15px;
}

.submit-btn {
  background-color: #3f1766;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 5px;
}

.footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.link-button {
  display: block;
  text-align: center;
  color: #3f1766;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  margin-top: 5px;
}


.back-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  color: #eae4f6 ;
  cursor: pointer;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.back-btn:hover {
  color: #7a5fc0;
  background-color: #eae4f6;
}


/* Add to your existing CSS */
.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: white;
    color: #555;
}

.input-group select:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 1);
}
