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%;
}

/* Login content */
.login-content {
  position: relative;
  z-index: 3;
  background: white;
  width: 90%;
  max-width: 400px;
  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: #45403b;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.register-btn {
  padding: 12px;
  background-color: white;
  color: #45403b;
  border: 2px solid #45403b;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 20px;
}

.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 */
  }
}

@media (max-width: 600px) {
  .top-oval .logo {
    max-width: 16rem;
  }
}
