/* Internal styles extracted from AuthMembers/Login.blade.php */

/* CSS Block 1 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            box-sizing: border-box;
        }

        /* Banner Section */
        section.login-banner-sec {
            background: url("../../images/login-banner.webp") no-repeat center/cover;
            width: 100%;
            height: 410px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        section.login-banner-sec h2 {
            font-size: 45px;
            font-weight: 400;
            color: #fff;
            text-align: center;
        }

        /* Form Section */
        section.login-form-sec {
            background: #eef3ff;
            padding: 40px 0;
        }

        section.login-form-sec h2 {
            color: #001D58;
            font-size: 45px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        /* Form Styling */
        form {
            max-width: 430px;
            margin: 0 auto;
            padding: 0 15px;
        }

        input#client_email,
        input#client_password,
        input#email,
        input#password {
            outline: 1px solid #001d5866;
        }

        input#client_email:focus,
        input#client_password:focus,
        input#email:focus,
        input#password:focus {
            border: none;
            box-shadow: none;
            outline: 1px solid rgba(0, 0, 255, 0.473);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input#email,
        .form-group input#password,
        .form-group input#client_email,
        .form-group input#client_password {
            background: #fff;
            color: #001D58;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 300;
            width: 100%;
        }

        .form-group input::placeholder {
            color: #001D58;
            font-size: 18px;
            font-weight: 300;
        }

        /* Login with Email Divider */
        section.login-form-sec h4 {
            position: relative;
            font-size: 16px;
            font-weight: 400;
            margin: 20px 0;
            text-align: center;
            color: #1C366D;
        }

        section.login-form-sec h4::before,
        section.login-form-sec h4::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 15%;
            height: 1px;
            background-color: #A9A3A3;
        }

        section.login-form-sec h4::before {
            left: 20%;
            transform: translateY(-50%);
        }

        section.login-form-sec h4::after {
            right: 20%;
            transform: translateY(-50%);
        }

        /* Checkbox and Forget Password */
        .form-group-checkbox-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox p {
            margin: 0;
            font-size: 17px;
            font-weight: 300;
            color: #000;
        }

        .form-forget-password a {
            font-size: 17px;
            font-weight: 300;
            color: #001D58;
            text-decoration: none;
        }

        .form-forget-password a:hover {
            text-decoration: underline;
        }

        /* Login Button */
        button.btn-block {
            width: 100%;
            border: none;
            color: #fff;
            background-color: #00F19C;
            padding: 12px;
            border-radius: 10px;
            font-size: 23px;
            font-weight: 500;
            margin-bottom: 30px;
            transition: background-color 0.3s ease;
        }

        button.btn-block:hover {
            background-color: #00cc85;
        }

        /* Sign Up Section */
        .card-footer {
            border-top: 1px solid #A9A3A3;
            padding-top: 20px;
        }

        .card-footer p {
            font-size: 17px;
            font-weight: 300;
            color: #000;
            margin: 0;
        }

        .card-footer a {
            color: #001D58;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
        }

        .card-footer a:hover {
            text-decoration: underline;
        }

        /* Tabs Styling */
        .nav-tabs {
            border-bottom: 2px solid #001D58;
            margin-bottom: 30px;
        }

        .nav-tabs .nav-link {
            color: #001D58;
            font-size: 18px;
            font-weight: 500;
            padding: 10px 20px;
            border: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .nav-tabs .nav-link.active {
            background-color: #001D58 !important;
            color: #fff !important;
            font-weight: 500;
            border-radius: 5px 5px 0 0;
        }

        .nav-tabs .nav-link:hover {
            background-color: #001D58;
            color: #fff;
        }

        /* Alerts */
        .alert {
            width: 100%;
            max-width: 370px;
            margin: 0 auto 15px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
        }

        .alert-success {
            border: 1px solid #188038!important;
            color: #188038!important;
            background: #f8fff9;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: 4px;
            margin: 10px 0;
            text-align: center;
        }

        .alert-danger {
            background: #ffeeee;
            border: 1px solid #dc3545;
            color: #dc3545;
        }

        .alert-danger li {
            list-style-type: none;
        }

        #login-member .welcom-form {
            width: 50%;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            #login-member .welcom-form {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            section.login-banner-sec {
                height: 300px;
            }

            section.login-banner-sec h2 {
                font-size: 35px;
            }

            section.login-form-sec h2 {
                font-size: 35px;
            }

            .form-group input#email,
            .form-group input#password,
            .form-group input#client_email,
            .form-group input#client_password {
                font-size: 16px;
                padding: 12px;
            }

            .form-group input::placeholder {
                font-size: 16px;
            }

            .checkbox p {
                font-size: 12px;
            }

            .form-forget-password a {
                font-size: 12px;
            }

            button.btn-block {
                font-size: 20px;
                padding: 10px;
            }

            .nav-tabs .nav-link {
                font-size: 16px;
                padding: 8px 12px;
            }

            .alert {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {

            section.login-form-sec h4::before,
            section.login-form-sec h4::after {
                width: 10%;
            }

            section.login-form-sec h4::before {
                left: 15%;
            }

            section.login-form-sec h4::after {
                right: 15%;
            }
        }

        li#main-e1-tab,
        li#main-e2-tab {
            width: 50%;
        }

        /* Password Toggle Styles */
        .password-input-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .password-toggle-icon {
            position: absolute;
            right: 15px;
            cursor: pointer;
            color: #001D58;
            font-size: 18px;
            transition: color 0.3s ease;
            z-index: 10;
        }

        .password-toggle-icon:hover {
            color: #0e2961b0 !important;
        }

        .password-input-group input {
            padding-right: 45px;
        }

