#login-popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.login-card {
  width: 800px;
  border-radius: 35px;
  overflow: hidden;
  border: none;
  margin-top: 100px;
  height: 550px;
  background-color: white;
  display: grid;
  /* Smooth transition on the card */
  /* Using CSS Grid for the layout */
  /* Two equal columns */
}

.login-image {
  background-image: url("../images/landing-1.jpg") !important;
  background-size: cover;
  background-position: center;
  height: 100%;
  /* Full height of the parent grid item */
  width: 100%;
  /* Ensure full width of the grid column */
}

.title-login {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.login-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
}

.rounded-input {
  border-radius: 30px;
  border: none;
  padding: 20px;
  background-color: #e5e9f2;
}

.forgot-password {
  display: block;
  text-align: right;
  margin-bottom: 15px;
  text-decoration: none !important;
  color: #999aa4;
}

.forgot-password:hover {
  font-weight: 500;
  color: #999aa4;
}

.btn-login {
  display: block;
  margin: 20px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
}

.login-button,
.register-button {
  padding: 12px;
  background-color: coral;
  /* Adjust button colors */
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.btn-dark.google {
  background-color: #34364a;
  padding: 12px;
  /* Adjust button colors */
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  /* To align icon and text properly */
  align-items: center;
  /* Center icon and text vertically */
  justify-content: center;
  /* Center the content inside the button */
}

.google-icon {
  width: 20px;
  /* Adjust size of the icon */
  height: auto;
  margin-right: 10px;
  /* Spacing between the icon and text */
}

.btn-dark.google:hover {
  box-shadow: 0 0 0 0.25rem rgba(83, 85, 107, 0.2666666667) !important;
  transition: all 0.4s;
}

.register-button {
  background-color: #ddd;
  /* Adjust register button color */
  color: #666;
}

.login-button:hover,
.register-button:hover {
  opacity: 0.8;
}

/* For tablet devices (screen width less than or equal to 768px) */
@media (max-width: 768px) {
  .login-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    /* Adjust height for better responsiveness */
    margin-top: -40px;
  }
  .login-image {
    display: none;
    /* Hide the image on tablets and smaller devices */
  }
  .login-content {
    padding: 20px;
    justify-content: flex-start;
    /* Adjust padding and content alignment for smaller screens */
  }
  .rounded-input {
    padding: 15px;
    /* Adjust input padding for smaller screens */
  }
  .action-buttons .login-button,
  .action-buttons .register-button {
    width: 100%;
    /* Full width buttons on mobile/tablet */
    margin: 10px 0;
    /* Add margin between buttons */
  }
}
@media (min-width: 769px) {
  .login-card {
    width: 800px;
    border-radius: 35px;
    overflow: hidden;
    border: none;
    margin-top: 100px;
    height: 550px;
    background-color: white;
    display: grid;
    margin: 60px;
  }
}
/* For mobile devices (screen width less than or equal to 576px) */
@media (max-width: 576px) {
  .login-card {
    width: 90%;
    /* Make the card narrower for small screens */
    height: auto;
    padding: 20px;
    /* Adjust margin for mobile */
  }
  .login-content {
    padding: 15px;
    /* Reduce padding on mobile */
  }
  .rounded-input {
    padding: 12px;
    /* Further reduce input padding for mobile */
  }
  .btn-login,
  .btn-register {
    padding: 10px;
    font-size: 14px;
    /* Adjust button font size */
  }
  .action-buttons .login-button,
  .action-buttons .register-button {
    margin: 8px 0;
    /* Tighter spacing between buttons */
  }
}/*# sourceMappingURL=modal-login.css.map */