/* Custom.css for Login Page */

/* Basic styles for the body and wrapper */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 40px); /* Subtracting the vertical padding (20px top + 20px bottom) */
  padding: 20px; /* Ensures some space around the main box on mobile */
  box-sizing: border-box; /* Include padding in height calculation */
}

.login-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Flex direction adjustment for responsive design */
@media (min-width: 768px) {
  .login-container {
      flex-direction: row;
  }
}

/* Form section */
.form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h4 {
  font-size: 24px;
  margin-bottom: 16px;
}

.form-section p {
  margin-bottom: 20px;
}

.form-section form {
  display: flex;
  flex-direction: column;
}

.form-section input {
  height: 45px;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  font-size: 16px;
}

.form-section button {
  background-color: #007bff; /* Primary button color */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.form-section button:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}

.form-section .text-center {
  text-align: center;
  margin-bottom: 20px;
}

.form-section a {
  color: #3498db;
  text-decoration: none;
}

.form-section a:hover {
  text-decoration: underline;
}

/* Image Section Style */
.image-section {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  