/* Extracted from resources/views/front/auth/register.blade.php
 * Block #1. Content is verbatim - no rules were added,
 * removed or reordered, so rendering is unchanged.
 */

:root {
            --primary-color: #4C80E4;
            --second-color: #4C80E4;
            --black-color: #000000;
        }

        .card .card-body {
            padding: 1.25rem !important;
        }

        .authentication-card .card-header {
            padding: 16px 40px;
            background: #4C80E4 !important;
            /* color: crimson; */
        }

        .login-box {
            position: relative;
            width: 100%;
            backdrop-filter: blur(25px);
            border: 2px solid var(--primary-color);
            box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            padding: 6em 2.5em 3em 2.5em;
            color: var(--second-color);
        }

        .login-header {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-color);
            background-color: #00000;
            width: 140px;
            height: 70px;
            border-radius: 0 0 20px 20px;
        }

        .login-header span {
            font-size: 30px;
            color: var(--black-color);
        }

        .login-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: -30px;
            width: 30px;
            height: 30px;
            border-top-right-radius: 50%;
            background: transparent;
            box-shadow: 15px 0 0 0 var(--primary-color);
        }

        .login-header::after {
            content: "";
            position: absolute;
            top: 0;
            right: -30px;
            width: 30px;
            height: 30px;
            border-top-left-radius: 50%;
            background: transparent;
            box-shadow: -15px 0 0 0 var(--primary-color);
        }

        .input-box {
            position: relative;
            display: flex;
            flex-direction: column;
            margin: 20px 0;
        }

        .input-field {
            width: 100%;
            height: 55px;
            font-size: 16px;
            background: transparent;
            color: var(--second-color);
            padding-inline: 20px 50px;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            outline: none;
        }

        .user {
            margin-bottom: 12px;
        }

        .label {
            position: absolute;
            top: -28px;
            left: 20px;
            transition: 0.2s;
            color: #4C80E4;
        }

        .input-field:focus~.label,
        .input-field:valid .label {
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 14px;
            background-color: var(--primary-color);
            border-radius: 30px;
            color: var(--black-color);
            padding: 0 12px;
        }

        .icon {
            position: absolute;
            top: 18px;
            right: 25px;
            font-size: 20px;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
        }

        .input-submit {
            width: 100%;
            height: 50px;
            background-color: #4C80E4;
            border: 1px solid #4C80E4;
            color: #FFF;
            font-size: 16px;
            font-weight: 500;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s;
        }

        .input-submit:hover {
            background: var(--second-color);
        }

        .register {
            text-align: center;
        }

        .register a {
            font-weight: 500;
        }

        @media only screen and (max-width: 564px) {
            .wrapper {
                padding: 0px;
            }

            .login_box {
                padding: 6em 1.5em 3em 1.5em;
            }
        }

        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .icon.blinking {
            animation: blink 1s infinite;
        }

        .form-check-label {
            background: transparent !important;
        }

        .error {
            color: red !important;
        }

        /* Modal Background */
        .otp-modal {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Modal Content Box */
        .otp-modal-content {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 28px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            width: 320px;
            text-align: center;
            position: relative;
        }

        /* Side Tabs (for the left/right boxes) */

        /* Close Button */
        .otp-close {
            position: absolute;
            top: 12px;
            right: 12px;
            border: none;
            background: transparent;
            font-size: 24px;
            color: #888;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .otp-close:hover,
        .otp-close:focus {
            color: #333;
            outline: none;
        }

        /* Title & Instruction */
        .otp-title {
            font-weight: 600;
            font-size: 18px;
            color: #222;
            margin-bottom: 8px;
        }

        .otp-instruction {
            font-size: 13px;
            color: #666;
            margin-bottom: 20px;
        }

        /* OTP Inputs Container */
        .otp-inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 20px;
        }

        /* OTP Input Boxes */
        .otp-input {
            width: 38px;
            height: 49px;
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            border: 1.5px solid #ccc;
            border-radius: 6px;
            transition: border-color 0.25s ease;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
            outline-offset: 2px;
            caret-color: #007bff;
        }

        .otp-input:focus {
            border-color: #007bff;
            box-shadow: 0 0 6px #007bff55;
            outline: none;
        }

        .otp-input::selection {
            background-color: #007bff33;
        }

        /* Error message */
        .otp-error {
            color: #d93025;
            font-size: 13px;
            margin-bottom: 16px;
            min-height: 18px;
        }

        /* Submit Button */
        .otp-submit-btn {
            width: 100%;
            padding: 12px 0;
            font-weight: 600;
            font-size: 15px;
            
            border: none;
            border-radius: 8px;
            color: #000;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .otp-submit-btn:hover,
        .otp-submit-btn:focus {
            background-color: #0056b3;
            box-shadow: 0 6px 20px rgba(0, 86, 179, 0.6);
            outline: none;
        }

        .custom-toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #28a745;
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 11000;
        }

        .custom-toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        .button-set {
            top: 7px;
        }
