@import url('../../assets-custom/root.css');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.header-and-hero {
  height: 100px;
  background: url('../../assets-custom/img/login/login-hero.png') no-repeat center center/cover;
  height: 50vh;
}

/* Hero Section for Login */
.login-hero-section {
  position: relative;
  background: url('../../assets-custom/img/login/login-hero.png') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-heading {
  color: #fff;
  text-align: center;
  font-family: 'Chakra Petch';
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Login Content Section */
.login-content-section {
  padding: 60px 20px;
  background: #0a0a0a;
}

.login-heading {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.login-subtext {
  color: #ffffffcc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.login-form-container {
  background: #111;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 40px 20px;
  max-width: 400px;
}

.form-control {
  background: #222;
  border: none;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-control::placeholder {
  color: #ffffff99;
}

.login-submit-btn {
  display: inline-block;
  background: var(--btn-background-color);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.login-submit-btn:hover {
 background: 
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    var(--btn-background-color);
  }

/* Reset password */

.btn-lost-password {
  background-color: var(--btn-background-color);
  margin-top: 20px;
}

.lost-password-inputs {
  padding-left: 0;
}

.reset-psw-title {
  margin-top: 40px;
}

.login-page-link {
  color: var(--btn-background-color);
}

.login-page-link:hover {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .login-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-heading {
    font-size: 1.4rem;
  }
}
