        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(to bottom, #C3E3FD 0%, #6EB8F5 50%, #2494ed 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .regular-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 32px;
            max-width: 450px;
            width: 100%;
        }

        .logo {
            text-align: center;
            margin-bottom: 32px;
        }

        .logo h1 {
            color: #0D78CD;
            font-size: 30px;
            font-weight: 700;
        }

        .logo p {
            color: #001B30;
            font-size: 15px;
            margin-top: 8px;
        }

         .welcome {
            color: #001B30;
            text-align: center;
            margin-bottom: 32px;
        }
        
        .welcome h2 {
            font-size: 22px;
            margin-bottom: 8px;
        }
        
        .welcome p {
            font-size: 15px;
        }

        .portal-form {
           display: flex;
           flex-direction: column;
           gap: 32px;
        }

        .menu-card {
            background: #ffffff;
            border-radius: 15px;
            border: 2px solid #2196f3;
            padding: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .menu-card:hover {
            background: #ebf5ff;
            transform: translateY(-4px);
            box-shadow: 0 6px 10px rgb(223, 223, 223);
        }
        
        .menu-card h3 {
            color: #001B30;
            font-size: 16px;

        }
        
        .menu-card p {
            color: #001B30;
            font-size: 13px;
            margin-top: 8px;
        }

        .info-box {
            background: #EAF3FD;
            padding: 16px;
            border-radius: 10px;
            font-size: 12px;
            color: #001B30;
        }

        .info-icon{
           width: 22px;
           height: 22px;
           flex-shrink: 0;
           margin-right: 8px;
        }

        .regular-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        }

        .regular-form .btn-primary {
        margin-top: 22px; /* 26 + 22 = 48 visual */
        }

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

        label {
            display: block;
            color: #001B30;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
        }

        input[type="text"],
        input[type="password"] {
            font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #2196F3;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .password-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        } 

        .password-wrapper input {
        padding-right: 44px; /* espacio para el ícono */
        }

        .password-icon {
        width: 18px;
        height: 18px;
        display: block;
        }

        .toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #2196F3;
    padding: 4px;
    }

    .toggle-password:focus {
    outline: none;
    }
        
        input[type="text"]:focus,
        input[type="password"]:focus {
        outline: none;
        border: 3px solid #2196F3;
        box-shadow: 0 0 0 3.5px rgba(102,126,234,0.15);
    }
        .password-requirements {
            font-size: 14px;
            color: #001B30;
        }
        
        .password-requirements h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #001B30;
        }
        
        .password-requirements ul {
            margin-left: 20px;
        }
        
        .password-requirements li {
            margin: 5px 0;
        }

        .btn-primary {
    width: 100%;
    padding: 12px 16px;
    background-color: #B7B7B7;
    color: #5F5F5F;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
        .btn-primary:not(:disabled) {
    background-color: #2196F3;
    color: white;
    cursor: pointer;
}

        .btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 10px rgba(17, 23, 51, 0.1);
}
        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            width: 100%;
            padding: 12px 16px;
            background: #C2E4FF;
            color: #0D78CD;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        
        .btn-secondary:hover {   
        transform: translateY(-2px);
        box-shadow: 0 8px 10px rgba(17, 23, 51, 0.1);
        }
        

        .alert {
            padding: 12px 16px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .alert-error {
            background: #FFEEEE;
            border: 1px solid #d27272;
            color: #9D0008;
        }

        .alert-success {
            background: #EEFFEE;
            border: 1px solid #72D275;
            color: #009D1F;
        }

        .footer {
            text-align: center;
            margin-top: 32px;
            color: #386B9F;
            font-size: 13px;
        }

        .footer a {
        color: #0034EE;
        font-weight: 500;
        }
