
@media screen and (min-width: 768px) {
    .glassy-card {
        min-width: 300px;
    }
}

/* Large screens */
@media screen and (min-width: 992px) {
    .glassy-card {
        min-width: 400px;
    }
}

.glassy-card h1,
.glassy-card p {
    margin: 0;
    color: #FFF;
}
.icon-container {
    position: relative;
}
.icon-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.icon-container input {
    padding-left: 30px;
}

.full-width-button {
    width: 100% !important;
}

/* Center the forms vertically and horizontally */
.oe_login_form,
.oe_signup_form,
.oe_reset_password_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.oe_reset_password_form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Adjust the maximum height to maintain the form within the viewport */
.oe_login_form .card,
.oe_signup_form,
.oe_reset_password_form {
  max-height: 80vh; /* Adjust as needed */
}