body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;

  background: 
    radial-gradient(circle at 20% 30%, rgba(146, 69, 63, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 80, 80, 0.1), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(200, 30, 60, 0.08), transparent 60%),
    linear-gradient(to bottom, #0d0d0d 0%, #000000 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
    position: fixed;
    top: -95px;
    left: -20px;
    width: 240px;
    height: auto;
}
.header {
    font-family: "Roboto", sans-serif; 
    font-weight: bold;
}
input {
    outline: 2px solid black;
}
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    background-color:transparent;
    background-size: cover; /* Ensure the image covers the entire background */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
}
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensure it takes full width of the parent */
}
.login-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 30px;
  border-radius: 30px;
  width: 320px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-form h2 {
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #333;
}


.login-form input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: black;
  padding: 10px;
  margin: 10px 0;
  border-radius: 20px;
  outline: none;
  font-family: "Roboto", sans-serif;
}



.login-form input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #e63946;
  box-shadow: 0 0 5px rgba(230, 57, 70, 0.4);
}



.login-form button {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

 .menu-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    width: 25px;
  }
  
  .menu-button {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
  }
  
  .menu-button img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
  }
  
 .menu-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
  .menu-content.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000000;
  }
  
  .menu-content li {
    margin-bottom: 10px;
    z-index: 10000000;
  }
  
  .menu-content a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    z-index: 1000000;
  }

.profile-button-container {
    position: fixed;
    top: 20px;
    right: 50px;
    z-index: 999;
}
.profile-button {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
}
.profile-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
input::placeholder {
    color: #999; /* Placeholder color */
}
.form-container {
    padding: 20px;
    box-sizing: border-box;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.error{

    color: red;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.login-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-form input:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    background-color: #f9f9f9;
}

.login-form .bottom-link {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.login-form .bottom-link a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.login-form .bottom-link a:hover {
    text-decoration: underline;
}


.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-container input {
  flex: 1;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 16px;
}


/* === Footer Styles (Simplified & Responsive) === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-top: 1px solid #222;
  margin-top: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left img {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 0;
  font-size: 13px;
  color: #bbb;
}

.footer-right {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 20px;
}

.footer-right a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #fff;
}