body {
    margin: 0;
    padding: 0;
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    background-color: white;
	  min-width: 1020px;
    height: 100%;
    overflow-y: hidden;
  }
  .dialog-bar {
    display: none;
     background-color: #132749;
     color: white;
     padding: 10px;
     text-align: center;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     margin: 0 auto;
     width: fit-content; /* Adjust the width as needed */
     z-index: 999;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
     border-radius: 0 0 5px 5px;
     transition: top 0.3s ease; /* Smooth transition effect */
     align-items: center;
     justify-content: center;
 }
 .dialog-bar.show {
   top: 0; /* Show the dialog bar */
 }
  .wrapper{
    display: flex;
    height: 100%;
  }
  .container {
    width: 50%;
    height: 100vh;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container-img{
    width: 50%;
    height: 100vh;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
  }
 
  h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  .container p{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.679);
  }
  label {
    display: block;
    font-size: 14px;
    color: #313131;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #132749;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
  }
  
  button:hover {
    background-color: #45a049;
  }
.error{
	color: red;

}
@media only screen and (max-width: 768px) {
  body {
    min-width: initial; /* Reset the minimum width */
  }

  .container {
    padding: 20px; /* Decrease padding for more space */
  }

  label {
    font-size: 16px; /* Slightly larger font for better readability */
  }

  input[type="text"],
  input[type="password"] {
    padding: 12px; /* Increase padding for more touch-friendly input */
  }

  button {
    margin: 10px 0; /* Add some margin for spacing */
  }

  .wrapper {
    flex-direction: column;
    align-items: center; /* Center align items in the column */
  }

  .container-img {
    display: none;
  }
}

 