body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

#content-wrapper {
  padding: 0 !important;
}

#content {
  padding: 0 !important;
  height: 93vh;
  overflow: hidden;
}

/* Main container */
.login-container {
  position: relative;
  height: 100%;
  width: 100%;
}

/* White oval top */
.top-oval {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh; /* Increase height to get a deeper curve */
  background: white;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  padding-bottom: 2rem;
}

.top-oval h1 {
  color: #ff7f00;
  font-size: 3rem;
  margin: 0;
}

.top-oval h2 {
  color: #333;
  font-size: 2rem;
  margin: 0;
  font-weight: normal;
}

/* Orange background */
.orange-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff7f00;
  z-index: 1;
  padding-top: 25vh;
}

/* Login content */
.login-content {
  position: relative;
  z-index: 3;
  background: white;
  width: 90%;
  max-width: 400px;
  margin: 5rem auto;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-content h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.login-content p {
  color: #666;
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-btn {
  padding: 12px;
  background-color: #ff7f00;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.register-btn {
  padding: 12px;
  background-color: white;
  color: #ff7f00;
  border: 2px solid #ff7f00;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.google-login-btn img {
  height: 18px;
  margin-right: 10px;
}

.google-login-btn:hover {
  background-color: #f7f7f7;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .top-oval {
    height: 20vh; /* Adjust height for smaller screens */
  }

  .login-content {
    margin: 0 auto;
  }

  .orange-bg {
    padding-top: 25vh; /* Match the new height of the white section */
  }
}
