body {
  font-family: 'Cairo', sans-serif;
  background-color: #212529; /* Bootstrap dark bg color */
  direction: rtl;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  object-fit: cover;
}

.login-box {
  max-width: 400px;
  width: 100%;
  padding: 30px;
  background-color: #343a40; /* Bootstrap dark shade */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.login-box img {
  max-width: 150px;
  width: 100%;
}

.form-control {
  border-radius: 5px;
  border: 1px solid #6c757d; /* Slightly lighter than dark for contrast */
  background-color: #495057; /* Bootstrap form-control dark */
  color: #f8f9fa;
}

.form-control::placeholder {
  color: #adb5bd;
}

.btn-primary {
  background-color: #6f42c1; /* Bootstrap purple */
  border: none;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #5a2a91;
}


 body {
      background-color: #f8f9fa; /* Bootstrap's secondaryBackground */
    }
    .login-container {
      max-width: 500px;
      margin: auto;
      padding: 20px;
      border-radius: 16px;
      background-color: #fff; /* Background color for the form */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .login-image {
      max-width: 465px;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .login-title, .login-subtitle {
      text-align: center;
      margin: 10px 0;
    }
    .login-button {
      width: 100%;
      border-radius: 12px;
    }
    .side-image-container {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      height: 100%;
    }
    .side-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }