/* this contains the main CSS for the login page */
body {
    background: linear-gradient(45deg, #000000, #2c003e);
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  

  main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }


  .login-form {
    background: #1e1e1e;
    max-width: 400px;
    width: 90%;
    margin: auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  

  .login-form h1 {
    text-align: left;
    margin-bottom: 1rem;
  }
 

  #email_sec,
  #password_sec {
    margin-bottom: 1rem;
    position: relative;
  }
  

  #email_sec input,
  #password_sec input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 1rem;
    background: #333;
    color: #e0e0e0;
    box-sizing: border-box;
  }
  

  input::placeholder {
    color: #bbb;
  }
  

  #toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #bb86fc;
    cursor: pointer;
    font-size: 0.9rem;
  }
  

  #login_button button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background: #6200ee;
    color: #fff;
    cursor: pointer;
    margin-bottom: 1rem;
  }
  
  #login_button button:hover {
    background: #3700b3;
  }


  #signin-link {
    text-align: center;
    font-size: 0.9rem;
  }
  

  #signin-link a {
    color: #bb86fc;
    text-decoration: none;
  }

  
  #signin-link a:hover {
    text-decoration: underline;
  }
  

  .remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
}


.remember-forgot label {
    display: flex;
    align-items: center;
    gap: 5px;
	}


.remember-forgot a {
    text-decoration: none;
    color: #bb86fc;
	}


.remember-forgot a:hover {
    text-decoration: underline;
}
