/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: 60vh;*/
  background-color: #ffffff;
}

/* Content Area */
.content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 80%; /*600px;*/
  width: 100%;
}

/* Image on the Left */
.left-image {
  position: fixed; /* Changed to fixed so it stays even when the page is scrolled */
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh; /* Sets the height to 100% of the viewport height */
  object-fit: fill;
  z-index: 1;
}

/* Image on the Right */
.right-image {
  position: fixed; /* Changed to fixed so it stays even when the page is scrolled */
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh; /* Sets the height to 100% of the viewport height */
  object-fit: fill;
  z-index: 1;
}


/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

/* Added style for modal */
.modal-dialog {
  /*max-width: 100%;*/
  height: 100%;
  margin: 0;
  padding: 0;
}
.modal-body {
  text-align: center;
}
video {
  max-width: 100%;
  border-radius: 0;
  padding-right: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
form {
  max-width: 85%;
}
.modal-content {
  height: auto;
  /*min-height: 100%;*/
  border-radius: 0;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-image,
  .right-image {
    position: static;
    transform: none;
    width: auto;
    margin-bottom: 20px;
    display: none;
  }
}
@media only screen and (min-width: 576px) {
  .modal-dialog {
    max-width: 90% !important;
  }
  .modal-content {
    max-height: 90% !important;
  }
}
