.login-container {
    border: 2px solid var(--app_primary_color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.login-form {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 50px;
}

.logn-btns-wrapper {
    display: flex !important;
    align-content: center;
}
.form-input {
    margin-bottom: 20px;
}
.form-input label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}
.form-input input {
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}
.form-input input:focus {
    border: 1px solid #007bff;
}
.login-button {
    background-color: #007bff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.login-button:hover {
    background-color: #006bff;
}
.btn-primary {
    background-color: var(--app_primary_color) !important;
    border-color: var(--app_primary_color) !important;
}

.btn-primary:hover {
    background-color: var(--hover-effect-bg-color) !important;
    border-color: var(--hover-effect-bg-color) !important;
}

.login::after {
    background-color: var(--app_primary_color);
}

.google-login-btn {
    background-color: white !important;
    color: var(--app_primary_color);
    /* margin-top: 1rem; */
    border: 1px solid var(--app_primary_color);
}

.google-login-btn:hover {
    background-color: var(--app_primary_color) !important;
    color: white;
    border: unset;
    border: 1px solid var(--app_primary_color);
}

.login-form-wrapper {
    border-left: 2px solid var(--app_primary_color);
}

.login-loader {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Light black with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/* .login-main-block{
    position: absolute;
    top: 15%;
    bottom: 35%;
    right: 35%;
    left: 25%;
} */

.login-main-block {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (min-width: 1800px) {
    .login-container {
        width: 50vw;
    }
}

@media screen and (max-width: 1200px) {
    .login-container {
        width: 80vw;
    }
}

@media screen and (max-width: 1100px) {
    .login-container {
        width: 90vw;
    }
}

@media screen and (max-width: 991px) {
    .login-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .login-form-wrapper {
        border: unset;
        border-top: 2px solid var(--app_primary_color);
    }

    .login-img-container {
        width: 100%;
    }

    .login-img-container > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .login-form-wrapper {
        width: 100%;
    }

    .login-form-wrapper > div {
        width: 70%;
    }

    .logn-btns-wrapper {
        margin-top: 1.5rem;
    }

    .login-header {
        text-align: center;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 786px) {
    .login-form-wrapper > div {
        width: 80%;
        padding-left: unset !important;
        padding-right: unset !important;
    }
}

@media screen and (max-width: 560px) {
    .login-container {
        max-height: 90vh;
        overflow-y: auto;
    }

    .login-form-wrapper > div {
        width: 90%;
    }

    .login-header {
        text-align: center;
        font-size: 2rem;
    }
}
