/*************************      Login Module Styles     *************************/


    /*========================= 
    Background Login
    ==============================*/
        .bg-app-ossesas {
            margin: 0;
            padding: 0;
            user-select: none;
        }


        #box-page-app-ossesas {
            display: flex;

            width: 100vw;
            height: 100vh;
        }


        .principal-box-app {
            display: flex;
            justify-content: center;
            align-items: center;

            width: 100%;
            height: auto;
        }
    /*====================================================================*/


    /*========================= 
    Mid Containers Login
    ==============================*/
        .midbox-right-login-ossesas,
        .midbox-left-login-ossesas {
            display: flex;
            align-items: center;
            justify-content: center;

            width: 50%;
            height: 100%;
        }


        .midbox-right-login-ossesas {
            background-color: #E34B47;
        }


        .midbox-left-login-ossesas {
            background-color: #fff;
        }
        .midbox-left-login-ossesas img {
            width: 150%;
            height: 35%;
        }
    /*====================================================================*/


    /*========================= 
    Right Container Login Form
    ==============================*/
        .login-container {
            background: linear-gradient(135deg, #2F4181, #465AA3);
            width: 420px;
            max-width: 90%;
            height: 60%;
            padding: 32px 32px 32px 28px;
            border-radius: 22px;

            display: flex;
            align-items: center;
            justify-content: center;

            box-shadow:
                6px 6px 20px rgba(36, 51, 102, 0.82),
                0 22px 44px rgba(36, 51, 102, 0.60);
        }


        .login-box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            width: 100%;
            height: 100%;
        }


        .midbox-up-login-box-container-form,
        .midbox-down-login-box-container-form {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }


        .midbox-up-login-box-container-form {
            height: 35%;
        }


        .midbox-down-login-box-container-form {
            height: 65%;
        }
    /*====================================================================*/


    /*========================= 
    Content Info Login Form
    ==============================*/
        .login-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .img-container-login-box-ossesas {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .img-container-login-box-ossesas img {
            width: 55%;
            height: auto;
        }


        .info-container-login-box-ossesas {
            margin: auto 28px auto auto;
        }
        .info-container-login-box-ossesas h1 {
            margin: auto auto 20px auto;
            padding: 0;

            font-size: 28px;
            color: #fff;
        }
        .info-container-login-box-ossesas h2 {
            margin: 0;
            padding: 0;

            font-size: 18px;
            color: #fff;
        }
    /*====================================================================*/


    /*========================= 
    Form Container Login Form
    ==============================*/
        .login-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            height: 100%;
            width: 100%;
            gap: 24px;
        }


        .form-group {
            display: flex;
            flex-direction: column;

            gap: 12px;
            width: 75%;
        }
        .form-group label {
            font-size: 24px;
            color: #fff;
        }
        .form-group input {
            width: 100%;
            padding: 12px 14px;

            background-color: transparent;
            border: 1px solid rgba(255,255,255,0.45);
            border-radius: 10px;

            font-size: 15px;
            color: #fff;

            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus {
            outline: none;
            border-color: #9FB0FF;
            box-shadow: 0 0 0 3px rgba(159,176,255,0.35);
        }
        .form-group input::placeholder {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            opacity: 0.75;
        }


        .password-input {
            position: relative;
            width: 100%;
        }


        .toggle-password {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);

            display: flex;
            align-items: center;
            justify-content: center;

            width: 28px;
            height: 28px;

            background: rgba(255, 255, 255, 0.08);
            border: none;
            border-radius: 50%;

            cursor: pointer;

            transition:
                background-color 0.2s ease,
                box-shadow 0.2s ease,
                transform 0.15s ease;
        }
        .toggle-password img {
            width: 16px;
            height: 16px;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            pointer-events: none;
        }
        .toggle-password:hover {
            background: rgba(227, 75, 71, 0.25);
            box-shadow: 0 0 8px rgba(227, 75, 71, 0.45);
        }
        .toggle-password:hover img {
            opacity: 1;
        }
        .toggle-password:active {
            transform: translateY(-50%) scale(0.95);
        }
    /*====================================================================*/


    /*========================= 
    Link to Forgot Password Login Form
    ==============================*/
        .permalink-no-pass-available {
            color: #E34B47;
            text-decoration: none;
            font-weight: bold;

            transition: color 0.2s, text-decoration 0.2s;
        }
        .permalink-no-pass-available:hover {
            color: #F19490;
            text-decoration: underline;
        }
    /*====================================================================*/


    /*========================= 
    Btn Submit Login  Style Login Form
    ==============================*/
        .btn-login-ossesas {
            background: transparent;
            font-size: 20px;
            color: #fff;

            width: 38%;
            margin: 20px 0 0 0;
            padding: 12px 0;

            border: 2px solid #E34B47;
            border-radius: 18px;

            cursor: pointer;
            transition: 
                background-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.15s ease;
        }
        .btn-login-ossesas:hover {
            background: rgba(227, 75, 71, 0.15);
            box-shadow: 0 0 14px rgba(227, 75, 71, 0.45);
            transform: translateY(-1px);
        }
        .btn-login-ossesas:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(227, 75, 71, 0.4);
        }
        .btn-login-ossesas:active {
            transform: translateY(0);
            box-shadow: 0 0 8px rgba(227, 75, 71, 0.6);
        }
        .btn-login-ossesas:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(227, 75, 71, 0.4);
        }
    /*====================================================================*/