/* Reset default styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(120deg, #04172d, #09203f, #0f2c55); /* Dark blue gradient */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #dedddd;
}

/* Parent container to hold both image and login box */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px; /* Increased gap between image and login box */
}

/* Image Container */
.image-container {
  width: 45%; /* Increased width */
  height: 50vh; /* Slightly decreased height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transform: translateX(-15px); /* Slightly moved left */
}

/* Login container */
.login-container {
  background: rgba(15, 40, 85, 0.9);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  height: 65vh; /* Slightly decreased height */
  width: 30%;
  padding: 45px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Title */
h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00ffff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

/* Input fields */
form input {
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;  
  border: none;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  width: 100%;
}

/* Placeholder styles */
form input::placeholder {
  color: rgba(197, 195, 195, 0.6);
  font-size: 14px;
}

/* Submit button */
form button {
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background: linear-gradient(90deg, #00ffff, #0077ff);
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  width: 100%;
}

form button:hover {
  color: #fff;
  background: #1a1b26;
  box-shadow: 0 0 15px #00ffff;
}

/* Signup and Forgot Password Links */
.extra-links {
  text-align: center;
  margin-top: 20px;
}

.extra-links p {
  margin: 5px 0;
}

.extra-links a {
  color: #0077ff; /* Blue color */
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

/* Visited link color */
.extra-links a:visited {
  color: #0055cc; /* Darker blue for visited links */
}

.extra-links a:hover {
  color: #00ffff; /* Cyan on hover */
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}
