/*************************************************************************************************
LOGO FONT IMPORT
/*************************************************************************************************/
@font-face {
  font-family: "LEMON MILK";
  src: url("../../fonts/LEMONMILK-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/*************************************************************************************************
UNIVERSAL STYLES
/*************************************************************************************************/
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #151515; /* Dark background for the entire page */
  color: #f2f2f2; /* Light text color for readability */
}

/*************************************************************************************************
LOGIN PAGE
/*************************************************************************************************/
.main-header {
  font-family: "LEMON MILK", sans-serif;
  font-size: 10px;
  font-weight: normal;
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 8px;
  margin: 0;
  z-index: 1000;
}

/* Login Page Styles */
.login-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("../../Images/LoginWallpaper.jpg") no-repeat center center
    fixed;
  background-size: cover;
}

.sign-in-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-in-title {
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.login-card {
  background: rgba(9, 9, 9, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 50px 40px;
  width: 300px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure the form takes up the full card height */
}

.login-button {
  margin-top: auto; /* Push the button to the bottom */
  margin-bottom: 10px;
}

#auth-feedback {
  font-family: "Poppins", sans-serif;
  font-size: 14px; /* Smaller text */
  color: #ff0000;
  text-align: center;
  margin-bottom: 15px; /* Space between feedback and login box */
}

.input-field {
  background: #333333;
  border: none;
  padding: 12px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 5px;
}

.input-field::placeholder {
  color: #bbbbbb;
}

.input-field:focus {
  outline: 2px solid #e50914;
}

.forgot-password {
  font-size: 12px;
  color: #e50914;
  text-decoration: none;
  margin-top: -5px;
  margin-bottom: 15px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-button {
  background-color: #ac1723;
  border: none;
  border-radius: 5px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: -10px;
}

.login-button:hover {
  background-color: #e50914;
}

/* Container for aligning links side by side */
.auth-links {
  display: flex; /* Flexbox for side-by-side alignment */
  justify-content: center; /* Center them horizontally */
  align-items: center; /* Align them vertically */
  gap: 15px; /* Add space between the links */
  margin-top: -5px;
  margin-bottom: 15px;
}

/* Styling for Forgot Password and Create Account */
.forgot-password {
  font-size: 12px;
  color: #e50914;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline; /* Add hover effect */
}
