
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins';
            height: 100vh;
            display: flex;
            background-color: #E3EAEC;
            padding: 20px;
            gap: 20px;
            box-sizing: border-box;
        }

        .container {
            height: 100%;
            display: flex;
            width: 100%;
            max-width: 1396px;
            margin: 0 auto;
            gap: 20px;
        }

        /* Panel izquierdo */
        .left-panel {
            flex: 1;
            max-width: 600px;
            height: 100%;
            background: linear-gradient(rgba(10, 30, 46, 0.7), rgba(10, 30, 46, 0.7)), url('../../img/fondo-panel.png');
            background-size: auto;
            background-position: top;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            font-family: 'Montserrat';
            font-weight: 500;
        }

        /* .left-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: 30px 30px, 50px 50px, 70px 70px;
            animation: float 20s ease-in-out infinite;
        } */

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .welcome-text {
            color: white;
            text-align: center;
            z-index: 2;
        }

        .welcome-text h2 {
            font-size: 2.2em;
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .welcome-text span{
            color:#718096;
        }

        .dots-indicator {
            display: flex;
            gap: 8px;
            margin-top: 30px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 24px;
            border-radius: 4px;
        }

        /* Panel derecho */
        .right-panel {
            flex: 1;
            max-width: 100%;
            height: 100%;
       
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 30px;
        
        }

       .logo {
    width: 170px;
    height: auto;
    margin-bottom: 30px;
}

        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .login-header h1 {
            font-family: 'Poppins';
            font-size: 2em;
            font-weight: 400;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .login-header p {
            color: #718096;
            font-size: 16px;
        }

        .form-container {
            width: 100%;
            max-width: 380px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            color: #4a5568;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .input-container {
            position: relative;
        }

    .form-input {
    width: 100%;
    padding: 14px 16px;
    padding-right: 48px; /* 👈 ESPACIO PARA EL ÍCONO */
    border: 2px solid #98ACB8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #E3EAEC;
}


        .form-input:focus {
            outline: none;
            border-color: #3182ce;
            background: #E3EAEC;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #718096;
            cursor: pointer;
            font-size: 18px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #081823;
        }

        .forgot-password-section {
            text-align: center;
            margin-bottom: 30px;
            font-size: 14px;
            color: #081823;
        }

        .forgot-text {
            color: #2d3748;
        }

        .separator {
            margin: 0 8px;
            color: #718096;
        }

        .recover-link {
            color: #2d3748;
            text-decoration: underline;
            font-weight: 500;
            cursor: pointer;
        }

        .recover-link:hover {
            color: #2d3748;
        }

        .login-btn {
            font-family: 'Poppins';
            height: 56px;
            width: calc(100% + 80px); /* El botón será 80px más ancho que el formulario */
            margin-left: -40px; /* Lo centramos */
            padding: 16px;
            background: #081823;
            color: white;
            border: none;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: #081823;
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
        }

        .signup-link {
            text-align: center;
            margin-top: 30px;
            color: #718096;
            font-size: 14px;
        }

        .signup-link a {
            color: #3182ce;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

                .fi {
                    width: 28px;
                    height: 20px;
                    border-radius: 4px;
                }
        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding: 10px;
                gap: 15px;
            }

            .container {
                flex-direction: column;
                gap: 15px;
            }

            .left-panel {
                flex: none;
                height: 300px;
                padding: 20px;
            }

            .welcome-text h2 {
                font-size: 1.5em;
            }

            .right-panel {
                padding: 30px 20px;
            }
        }