/* New CSS Start */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 980px; /* Increased max width */
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; /* Retain padding for better spacing */
  display: flex; /* Adding flex for layout adjustment */
  justify-content: space-between; /* Center-align child elements */
}


.main-container {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  height: 100%;
}

@media (min-width: 750px) {
  .main-container {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.form-container {
  max-width: 400px;
  width: 60%;
  background: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.form-group {
  margin-bottom: 15px;
  margin-right: 30px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #e0a800;
}

.image-container {
  display: none;
}

@media (min-width: 750px) {
  .form-container {
    margin-right: auto;
  }

  .image-container {
    display: block;
    flex: 1;
    /* background: url('file/login.PNG') no-repeat center center; */
    background-size: cover;
    height: 100%;
    max-height: 600px;
    border-radius: 10px;
  }
}

footer {
  margin-top: auto;
  padding: 10px 20px;
  background: #f1f1f1;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.social-links a {
  color: #000;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0073e6;
}

.social-links li {
  display: inline-block;
}