
body {
    height: 100vh;
    margin: 0;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;


}
.login-card {
    width: 100%;
    max-width: 900px;
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}
.split-left {
    background: #7da17e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 50%;
}
.split-right {
    padding: 20px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-container {
    max-width: 350px;
    width: 100%;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 10px 0;
}
img {
    width: 200px;
}
.form-check-input {
    cursor: pointer;
}
.card {
    width: 25rem;
    display: flex;
}
body.swal2-shown, html.swal2-shown {
    height: 100%; /* Maintain full height during SweetAlert */
    overflow: hidden; /* Prevent unwanted scrolling */
    display: flex; /* Preserve flex alignment */
    align-items: center;
    justify-content: center;
}

.reset-card {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.reset-card img {
    max-width: 80px;
    display: block;
    margin: 0 auto 1rem;
}
.reset-card h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.reset-card p {
    font-size: 0.9rem;
    text-align: center;
    color: #6c757d;
}

@media (max-width: 576px) {
    .split-left {
        display: none;
    }
    .split-right {
        width: 100%;
    }
  }
  