/* About Section */
#login {
  padding: 0;
  width: 100%;
}

.login-image {
  position: relative;
  width: 100%;
  height: 20vh; /* Height of the header image */
  min-height: 300px;
  background-size: cover;
  background-position: center;
  /* Fade top + bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  /* Fade end */
}

.login-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay to make text stand out */
  text-align: center;
  padding: 0 20px;
}

.login-image .overlay .overlay-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  font-weight: 900;
  margin-bottom: 10px;
  color: #B19784;
  margin-right: 30%; /* Moves the title to the right */
}

.login-image .overlay h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.login-image .overlay p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Normal Content Below the Image */
.login-content {
  padding: 40px 60px;                  /* This is where the content window size is being controlled */
  background-color: #f9f9f9;
}

.login-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.login-content p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
}
