

/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    url('../img/house.png'); /* Adjusted path assuming CSS is in assets/css/ */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}


body::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(21, 31, 46, 0.6)
; /* updated overlay */
  z-index: 0;
}

main,
header {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 0 1rem;
}



main,
header {
  position: relative;
  z-index: 1;
}

  
  header h1 {
    font-size: 27px;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  main {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  .home-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  
  .tagline {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input,
  select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #fff;
    color: black;
    box-shadow: inset 0 0 0 1px #374151;
    transition: box-shadow 0.2s ease;
  }
  
  input::placeholder {
    color: #9ca3af;
  }
  
  select {
    appearance: none;
    background-color: #1f2937;
  }
  
  button {
    padding: 0.75rem 1rem;
    background-color: #06b6d4;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;

  }
  
  button:hover {
    background-color: #0891b2;
  }

  .custom-customAlert-box .btn{
  display: none;
}
  

.forgot-password  a{
    background-color: white;
    color: #069eff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: large;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  main {
    max-width: 90%;
  }

  input,
  button {
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.75rem;
  }

  input,
  button {
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
  }
}