.container-full-height {
    font-family: "Poppins", sans-serif;
    height: 100%;
    overflow-y: scroll;
}

.login-container {
    display: grid;
    min-height: 100svh;
    grid-template-columns: 1fr 1fr;
}

.left-div {
    padding: 0;
    background-color: rgba(3, 175, 159, 0.2);
}

.right-div {
    padding: 0;
    background-color: var(--dashboard-colors-dashboard-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-img-div {
    width: 250px;
    height: auto;
}

.guide {
    color: var(--dashboard-colors-dashboard-darkest-grey, #666);
    font-feature-settings: "clig" off, "liga" off;
    font-family: Poppins;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    width: fit-content;
}

.alert-login-danger {
    position: absolute;
    right: 10px;
    top: 10px;
}

.login-btn {
    height: 2.9rem;
    border-radius: 8px !important;
    color: var(--dashboard-colors-dashboard-white, #fff);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.height-full {
    height: 100% !important;
}

.right-div {
    padding: 0;
    background-color: var(--secondary);
}

.form-data {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 1rem;
}

.heading h1 {
    color: var(--1, #0b393e);
    font-family: Lato;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form-check-input {
    color: var(--dashboard-colors-dashboard-dark-grey, #979797);
    font-feature-settings: "clig" off, "liga" off;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.submit-button {
    background-color: var(--primary);
    padding: 0.8rem 4rem;
}

.input-element {
    background-color: #f4f9f6 !important;
    height: 3rem !important;
    border-radius: 10px !important;
}

.forgot-password-link {
    position: relative;
    color: #0b393e;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.forgot-password-link:hover {
    text-decoration: none;
    color: #0b393e;
}

.remember-forget-row {
    background-color: #f4f9f6;
}

.remember-forget-row.checked {
    background-color: #0b393e !important;
}

.width {
    padding: 7% 20% 10% 16% !important;
}

.label {
    font-weight: 600;
}

.google-login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #03af9f;
    border-radius: 8px;
    margin-top: 15px;
    padding: 6px 10px;
    color: #03af9f;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
}

.google-login-btn:hover {
    text-decoration: none;
    color: #fff;
    background-color: #03af9f;
}

.form-check {
    padding: 0;
}

.or_container {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #f4f9f6;
    padding: 10px;
}

/* ---------------Checkbox Code Start -------------- */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    display: none;
    margin-right: 10px;
}

.checkmark {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary);
    margin-right: 10px;
}

.custom-checkbox input:checked + .checkmark::before {
    content: "\2713";
    font-weight: 700;
}

.left-login-div {
    object-fit: cover;
    object-position: center;
    height: 100vh;
    max-width: 100%;
}

.login-alert-message {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ---------------Checkbox Code End -------------- */

.swal2-styled.swal2-confirm {
    border: none !important;
    box-shadow: none !important;
}

.swal2-styled.swal2-confirm:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .left-div {
        display: none;
    }
}
